Click here to Skip to main content
15,902,299 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionerror C2143 Pin
_Flaviu10-Oct-19 3:41
_Flaviu10-Oct-19 3:41 
AnswerRe: error C2143 Pin
Richard MacCutchan10-Oct-19 4:21
mveRichard MacCutchan10-Oct-19 4:21 
AnswerRe: error C2143 Pin
CPallini10-Oct-19 6:14
mveCPallini10-Oct-19 6:14 
GeneralRe: error C2143 Pin
_Flaviu10-Oct-19 19:47
_Flaviu10-Oct-19 19:47 
GeneralRe: error C2143 Pin
_Flaviu11-Oct-19 0:29
_Flaviu11-Oct-19 0:29 
GeneralRe: error C2143 Pin
Richard MacCutchan11-Oct-19 0:55
mveRichard MacCutchan11-Oct-19 0:55 
GeneralRe: error C2143 Pin
_Flaviu11-Oct-19 1:08
_Flaviu11-Oct-19 1:08 
GeneralRe: error C2143 Pin
Richard MacCutchan11-Oct-19 1:24
mveRichard MacCutchan11-Oct-19 1:24 
In the following macro Name refers to something outside of the definition:
C++
#define TestAndClearDirty(ni)	\
    test_and_clear(ni, Name)

But if Name does not exist in that source module, or is not externalised in a linked module it will never work. My suspicion is that this macro is wrong and Name should be one of the formal parameters, and refer to one of the flags in the ni struct. Something like:
C++
#define TestAndClearDirty(ni, Name)	\
    test_and_clear(ni, Name)

And it would be called by
C++
TestAndClearDirty(ni, some_falg_name);




But I am working completely in the dark and making (probably wild) guesses.

I can only suggest that you go back to the place or person that this code comes from for assistance.
GeneralRe: error C2143 Pin
_Flaviu11-Oct-19 4:28
_Flaviu11-Oct-19 4:28 
GeneralRe: error C2143 Pin
Richard MacCutchan11-Oct-19 5:04
mveRichard MacCutchan11-Oct-19 5:04 
GeneralRe: error C2143 Pin
leon de boer15-Oct-19 2:58
leon de boer15-Oct-19 2:58 
AnswerRe: error C2143 Pin
David Crow10-Oct-19 10:44
David Crow10-Oct-19 10:44 
AnswerRe: error C2143 Pin
Daniel Pfeffer11-Oct-19 4:47
professionalDaniel Pfeffer11-Oct-19 4:47 
GeneralRe: error C2143 Pin
_Flaviu12-Oct-19 23:44
_Flaviu12-Oct-19 23:44 
GeneralRe: error C2143 Pin
_Flaviu12-Oct-19 23:46
_Flaviu12-Oct-19 23:46 
QuestionHow can I have several hundred of #if defined(XXX) ... #endif in an easy-to-read table format? Pin
arnold_w9-Oct-19 11:55
arnold_w9-Oct-19 11:55 
QuestionRe: How can I have several hundred of #if defined(XXX) ... #endif in an easy-to-read table format? Pin
Richard MacCutchan9-Oct-19 21:41
mveRichard MacCutchan9-Oct-19 21:41 
AnswerRe: How can I have several hundred of #if defined(XXX) ... #endif in an easy-to-read table format? Pin
arnold_w9-Oct-19 21:54
arnold_w9-Oct-19 21:54 
GeneralRe: How can I have several hundred of #if defined(XXX) ... #endif in an easy-to-read table format? Pin
Richard MacCutchan9-Oct-19 22:10
mveRichard MacCutchan9-Oct-19 22:10 
GeneralRe: How can I have several hundred of #if defined(XXX) ... #endif in an easy-to-read table format? Pin
arnold_w9-Oct-19 22:20
arnold_w9-Oct-19 22:20 
GeneralRe: How can I have several hundred of #if defined(XXX) ... #endif in an easy-to-read table format? Pin
Richard MacCutchan9-Oct-19 22:36
mveRichard MacCutchan9-Oct-19 22:36 
GeneralRe: How can I have several hundred of #if defined(XXX) ... #endif in an easy-to-read table format? Pin
arnold_w9-Oct-19 23:00
arnold_w9-Oct-19 23:00 
AnswerRe: How can I have several hundred of #if defined(XXX) ... #endif in an easy-to-read table format? Pin
CPallini10-Oct-19 3:03
mveCPallini10-Oct-19 3:03 
GeneralRe: How can I have several hundred of #if defined(XXX) ... #endif in an easy-to-read table format? Pin
arnold_w10-Oct-19 4:27
arnold_w10-Oct-19 4:27 
GeneralRe: How can I have several hundred of #if defined(XXX) ... #endif in an easy-to-read table format? Pin
CPallini10-Oct-19 6:12
mveCPallini10-Oct-19 6:12 

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.