Click here to Skip to main content
15,912,932 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questiondialog, radio and combo box Pin
blue i14-Aug-06 7:14
blue i14-Aug-06 7:14 
AnswerRe: dialog, radio and combo box Pin
David Crow14-Aug-06 7:47
David Crow14-Aug-06 7:47 
AnswerRe: dialog, radio and combo box Pin
Hamid_RT14-Aug-06 7:53
Hamid_RT14-Aug-06 7:53 
Questionugly casting warning DWORD to PVOID Pin
hunter1314-Aug-06 6:06
hunter1314-Aug-06 6:06 
AnswerRe: ugly casting warning DWORD to PVOID Pin
Joe Woodbury14-Aug-06 12:17
professionalJoe Woodbury14-Aug-06 12:17 
AnswerRe: ugly casting warning DWORD to PVOID Pin
Mike Dimmick14-Aug-06 14:20
Mike Dimmick14-Aug-06 14:20 
GeneralRe: ugly casting warning DWORD to PVOID Pin
hunter1315-Aug-06 23:35
hunter1315-Aug-06 23:35 
GeneralRe: ugly casting warning DWORD to PVOID Pin
Mike Dimmick16-Aug-06 15:44
Mike Dimmick16-Aug-06 15:44 
I can only guess at what you were trying to do. Were you trying to dump the code at the location of an exception?

The warning itself is telling you that, if you were to recompile this code with one of the 64-bit compilers, that this line would potentially behave differently. The compiler doesn't really know that the CONTEXT type would be different on a 64-bit processor anyway and that this line therefore wouldn't compile. If you want to turn off the warning, use #pragma warning( disable: 4312 ), or disable the /Wp64 compiler switch.

I recently saw a recommendation from someone at Microsoft that you should now just use the 64-bit compiler to check compatibility and not rely on /Wp64 anyway.

Stability. What an interesting concept. -- Chris Maunder

GeneralRe: ugly casting warning DWORD to PVOID Pin
hunter1316-Aug-06 20:37
hunter1316-Aug-06 20:37 
Questionspecifying source files for nmake Pin
rana7414-Aug-06 5:59
rana7414-Aug-06 5:59 
QuestionLaunching Device Manager or manipulating device manager from C++ Pin
ajisthekingofpop14-Aug-06 5:19
ajisthekingofpop14-Aug-06 5:19 
AnswerRe: Launching Device Manager or manipulating device manager from C++ Pin
David Crow14-Aug-06 5:31
David Crow14-Aug-06 5:31 
GeneralRe: Launching Device Manager or manipulating device manager from C++ Pin
ajisthekingofpop14-Aug-06 5:33
ajisthekingofpop14-Aug-06 5:33 
GeneralRe: Launching Device Manager or manipulating device manager from C++ Pin
David Crow14-Aug-06 5:48
David Crow14-Aug-06 5:48 
GeneralRe: Launching Device Manager or manipulating device manager from C++ Pin
ajisthekingofpop14-Aug-06 6:01
ajisthekingofpop14-Aug-06 6:01 
AnswerREDEFINING WHAT I WANT TO DO Pin
ajisthekingofpop14-Aug-06 5:39
ajisthekingofpop14-Aug-06 5:39 
QuestionRe: REDEFINING WHAT I WANT TO DO Pin
David Crow14-Aug-06 5:48
David Crow14-Aug-06 5:48 
AnswerRe: REDEFINING WHAT I WANT TO DO Pin
ajisthekingofpop14-Aug-06 5:58
ajisthekingofpop14-Aug-06 5:58 
GeneralRe: REDEFINING WHAT I WANT TO DO Pin
David Crow14-Aug-06 6:14
David Crow14-Aug-06 6:14 
AnswerRe: Launching Device Manager or manipulating device manager from C++ Pin
Mike Dimmick14-Aug-06 14:22
Mike Dimmick14-Aug-06 14:22 
QuestionCommand Line of a call to CreateProcess catchable? Pin
Stone Free14-Aug-06 5:05
Stone Free14-Aug-06 5:05 
AnswerRe: Command Line of a call to CreateProcess catchable? Pin
David Crow14-Aug-06 5:32
David Crow14-Aug-06 5:32 
AnswerRe: Command Line of a call to CreateProcess catchable? Pin
bolivar12314-Aug-06 6:17
bolivar12314-Aug-06 6:17 
AnswerRe: Command Line of a call to CreateProcess catchable? Pin
Mike Dimmick14-Aug-06 14:28
Mike Dimmick14-Aug-06 14:28 
QuestionQuestion about "optimal" set up of VC++ 6 environment Pin
ldsdbomber14-Aug-06 4:25
ldsdbomber14-Aug-06 4:25 

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.