Click here to Skip to main content
15,797,961 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Learning the Win API Pin
coco24318-Aug-22 9:38
coco24318-Aug-22 9:38 
AnswerRe: macro function definition Pin
coco24318-Aug-22 3:21
coco24318-Aug-22 3:21 
GeneralRe: macro function definition Pin
coco24318-Aug-22 3:37
coco24318-Aug-22 3:37 
AnswerRe: macro function definition Pin
Richard MacCutchan18-Aug-22 4:38
mveRichard MacCutchan18-Aug-22 4:38 
GeneralRe: macro function definition Pin
coco24318-Aug-22 4:50
coco24318-Aug-22 4:50 
GeneralRe: macro function definition Pin
Richard MacCutchan18-Aug-22 5:04
mveRichard MacCutchan18-Aug-22 5:04 
GeneralRe: macro function definition Pin
coco24318-Aug-22 5:28
coco24318-Aug-22 5:28 
GeneralRe: macro function definition Pin
Richard MacCutchan18-Aug-22 5:40
mveRichard MacCutchan18-Aug-22 5:40 
The backslashes are there to tell the macro processor to include them all until it finds a line that just ends in a newline.
C++
#define FOO(x) \  // means the definition continues onto the next line
    x *= 25;   \  // still more to come
    printf("X = %d\n"); // no backslash so this is the last line to include

QuestionReplace CString Format() Pin
2022 Dude16-Aug-22 8:40
2022 Dude16-Aug-22 8:40 
AnswerRe: Replace CString Format() Pin
Mircea Neacsu16-Aug-22 9:41
Mircea Neacsu16-Aug-22 9:41 
QuestionMessage Closed Pin
15-Aug-22 8:16
Member 1496877115-Aug-22 8:16 
AnswerRe: Remove white space - empty lines - in editor Pin
Dave Kreskowiak15-Aug-22 8:23
mveDave Kreskowiak15-Aug-22 8:23 
GeneralMessage Closed Pin
15-Aug-22 10:12
Member 1496877115-Aug-22 10:12 
GeneralRe: Remove white space - empty lines - in editor Pin
Dave Kreskowiak15-Aug-22 10:26
mveDave Kreskowiak15-Aug-22 10:26 
GeneralRe: Remove white space - empty lines - in editor Pin
Richard MacCutchan15-Aug-22 22:30
mveRichard MacCutchan15-Aug-22 22:30 
GeneralRe: Remove white space - empty lines - in editor Pin
Dave Kreskowiak16-Aug-22 4:47
mveDave Kreskowiak16-Aug-22 4:47 
GeneralRe: Remove white space - empty lines - in editor Pin
Richard MacCutchan16-Aug-22 4:54
mveRichard MacCutchan16-Aug-22 4:54 
GeneralRe: Remove white space - empty lines - in editor Pin
Dave Kreskowiak16-Aug-22 5:21
mveDave Kreskowiak16-Aug-22 5:21 
GeneralRe: Remove white space - empty lines - in editor Pin
PIEBALDconsult17-Aug-22 9:26
professionalPIEBALDconsult17-Aug-22 9:26 
AnswerRe: Remove white space - empty lines - in editor Pin
trønderen15-Aug-22 12:53
trønderen15-Aug-22 12:53 
GeneralRe: Remove white space - empty lines - in editor Pin
DerekT-P17-Aug-22 0:19
professionalDerekT-P17-Aug-22 0:19 
GeneralRe: Remove white space - empty lines - in editor Pin
Richard MacCutchan17-Aug-22 1:18
mveRichard MacCutchan17-Aug-22 1:18 
QuestionMessage Closed Pin
12-Aug-22 13:28
Member 1496877112-Aug-22 13:28 
AnswerRe: how to resolve and understand how / why it works or not Pin
Richard MacCutchan12-Aug-22 23:12
mveRichard MacCutchan12-Aug-22 23:12 
GeneralMessage Closed Pin
13-Aug-22 5:09
Member 1496877113-Aug-22 5:09 

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.