Click here to Skip to main content
15,914,500 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Resource.h File Checking Pin
toxcct12-Oct-06 3:26
toxcct12-Oct-06 3:26 
GeneralRe: Resource.h File Checking Pin
Galatei12-Oct-06 7:41
Galatei12-Oct-06 7:41 
GeneralRe: Resource.h File Checking Pin
Blake Miller13-Oct-06 4:32
Blake Miller13-Oct-06 4:32 
QuestionC on UNIX Question Pin
Yadrif12-Oct-06 2:34
Yadrif12-Oct-06 2:34 
AnswerRe: C on UNIX Question Pin
tom144312-Oct-06 2:50
tom144312-Oct-06 2:50 
GeneralRe: C on UNIX Question Pin
Yadrif12-Oct-06 3:12
Yadrif12-Oct-06 3:12 
GeneralRe: C on UNIX Question Pin
Zac Howland12-Oct-06 3:17
Zac Howland12-Oct-06 3:17 
GeneralRe: C on UNIX Question Pin
tom144312-Oct-06 4:23
tom144312-Oct-06 4:23 
Sounds like a strong possibility which is easily checked.

Three options:

1. Just convert the function over from K&R style parm list to an ANSI style list and give it a try.

2. Do a man on aCC and try and figure out what compiler flag enables K&R.

3. You should be able to do something like is done is this example because I believe all ANSI compilers predefine __STDDC__:

#ifdef __STDC__
void psm_update_cfg_srcs(UINT16 srcs, UINT16 installed, UINT16 present,
UINT16 enabled)
#else
void psm_update_cfg_srcs(srcs, installed, present, enabled)
UINT16 srcs;
UINT16 installed;
UINT16 present;
UINT16 enabled;
#endif
AnswerRe: C on UNIX Question Pin
Link200612-Oct-06 2:53
Link200612-Oct-06 2:53 
QuestionHow to set the Default Main WW Page Pin
gomez_a12-Oct-06 2:25
gomez_a12-Oct-06 2:25 
AnswerRe: How to set the Default Main WW Page Pin
Galatei12-Oct-06 7:58
Galatei12-Oct-06 7:58 
QuestionHow to retrieval the pixel information by clicking mouse on the image? Pin
chaoxin12-Oct-06 2:09
chaoxin12-Oct-06 2:09 
AnswerRe: How to retrieval the pixel information by clicking mouse on the image? Pin
Hamid_RT12-Oct-06 2:43
Hamid_RT12-Oct-06 2:43 
QuestionFullscreen Pin
Lampros Giampouras12-Oct-06 2:08
Lampros Giampouras12-Oct-06 2:08 
AnswerRe: Fullscreen Pin
Hamid_RT12-Oct-06 2:39
Hamid_RT12-Oct-06 2:39 
GeneralRe: Fullscreen Pin
Lampros Giampouras12-Oct-06 3:49
Lampros Giampouras12-Oct-06 3:49 
GeneralRe: Fullscreen Pin
Hamid_RT13-Oct-06 8:03
Hamid_RT13-Oct-06 8:03 
AnswerRe: Fullscreen Pin
David Crow12-Oct-06 5:43
David Crow12-Oct-06 5:43 
AnswerRe: Fullscreen Pin
Galatei12-Oct-06 7:32
Galatei12-Oct-06 7:32 
Questionload cursor for hourglass-arrow Pin
YaronNir12-Oct-06 0:38
YaronNir12-Oct-06 0:38 
AnswerRe: load cursor for hourglass-arrow Pin
Hamid_RT12-Oct-06 0:41
Hamid_RT12-Oct-06 0:41 
GeneralRe: load cursor for hourglass-arrow Pin
YaronNir12-Oct-06 2:28
YaronNir12-Oct-06 2:28 
AnswerRe: load cursor for hourglass-arrow Pin
Galatei12-Oct-06 1:21
Galatei12-Oct-06 1:21 
GeneralRe: load cursor for hourglass-arrow Pin
YaronNir12-Oct-06 2:09
YaronNir12-Oct-06 2:09 
AnswerRe: load cursor for hourglass-arrow Pin
Angbo200612-Oct-06 1:41
Angbo200612-Oct-06 1:41 

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.