Click here to Skip to main content
16,006,440 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: pre tags please Pin
apoc8327-Feb-07 22:10
apoc8327-Feb-07 22:10 
GeneralRe: Unhandled exception Pin
Eytukan27-Feb-07 17:53
Eytukan27-Feb-07 17:53 
GeneralRe: Unhandled exception Pin
ThatsAlok27-Feb-07 19:31
ThatsAlok27-Feb-07 19:31 
GeneralRe: Unhandled exception Pin
Eytukan27-Feb-07 19:34
Eytukan27-Feb-07 19:34 
GeneralRe: Unhandled exception Pin
ThatsAlok27-Feb-07 19:50
ThatsAlok27-Feb-07 19:50 
GeneralRe: Unhandled exception Pin
Eytukan27-Feb-07 19:52
Eytukan27-Feb-07 19:52 
GeneralRe: Unhandled exception [modified] Pin
apoc8327-Feb-07 22:09
apoc8327-Feb-07 22:09 
QuestionRe: Unhandled exception Pin
apoc831-Mar-07 21:11
apoc831-Mar-07 21:11 
It worked!
Using this:
U8 * const Yarray_org = (U8*)malloc(W*H*sizeof(U8));
U8 * const Uarray_org const = (U8*)malloc(W*H*sizeof(U8));
U8 * const Varray_org const = (U8*)malloc(W*H*sizeof(U8));

Yarray = Yarray_org;
Uarray = Yarray_org;
Varray = Yarray_org;

everytime I did this:
*Yarray++
This is like Yarray[0], Yarray[1]...
so after incrementing to pointer, I have to
Yarray = Yarray_org; to go back to its base
(pointer) address..is this correct?


QuestionGetPixel() help Pin
arunforce27-Feb-07 15:12
arunforce27-Feb-07 15:12 
AnswerRe: GetPixel() help Pin
Eytukan27-Feb-07 16:19
Eytukan27-Feb-07 16:19 
GeneralRe: GetPixel() help Pin
arunforce27-Feb-07 16:28
arunforce27-Feb-07 16:28 
GeneralRe: GetPixel() help Pin
Eytukan27-Feb-07 17:17
Eytukan27-Feb-07 17:17 
GeneralRe: GetPixel() help Pin
arunforce27-Feb-07 17:27
arunforce27-Feb-07 17:27 
QuestionRe: GetPixel() help Pin
Mark Salsbery27-Feb-07 17:35
Mark Salsbery27-Feb-07 17:35 
AnswerRe: GetPixel() help Pin
Eytukan27-Feb-07 17:35
Eytukan27-Feb-07 17:35 
GeneralRe: GetPixel() help Pin
Mark Salsbery27-Feb-07 17:41
Mark Salsbery27-Feb-07 17:41 
JokeRe: GetPixel() help Pin
Hamid_RT27-Feb-07 18:55
Hamid_RT27-Feb-07 18:55 
GeneralRe: GetPixel() help Pin
arunforce27-Feb-07 17:43
arunforce27-Feb-07 17:43 
GeneralRe: GetPixel() help Pin
Mark Salsbery27-Feb-07 17:48
Mark Salsbery27-Feb-07 17:48 
GeneralRe: GetPixel() help Pin
Eytukan27-Feb-07 17:49
Eytukan27-Feb-07 17:49 
QuestionVisual Studio Express Debugger Pin
ForNow27-Feb-07 14:47
ForNow27-Feb-07 14:47 
AnswerRe: Visual Studio Express Debugger Pin
Stephen Hewitt27-Feb-07 15:09
Stephen Hewitt27-Feb-07 15:09 
GeneralRe: Visual Studio Express Debugger Pin
ForNow27-Feb-07 15:42
ForNow27-Feb-07 15:42 
GeneralRe: Visual Studio Express Debugger Pin
Stephen Hewitt27-Feb-07 15:46
Stephen Hewitt27-Feb-07 15:46 
GeneralRe: Visual Studio Express Debugger Pin
ForNow27-Feb-07 15:54
ForNow27-Feb-07 15:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.