Click here to Skip to main content
15,891,920 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: get the list of subkeys under a specific key Pin
CPallini23-Apr-09 3:09
mveCPallini23-Apr-09 3:09 
GeneralRe: get the list of subkeys under a specific key Pin
MrKBA23-Apr-09 3:09
MrKBA23-Apr-09 3:09 
JokeRe: get the list of subkeys under a specific key Pin
Cedric Moonen23-Apr-09 3:11
Cedric Moonen23-Apr-09 3:11 
GeneralRe: get the list of subkeys under a specific key Pin
Hamid_RT23-Apr-09 4:10
Hamid_RT23-Apr-09 4:10 
GeneralRe: get the list of subkeys under a specific key Pin
CPallini23-Apr-09 5:26
mveCPallini23-Apr-09 5:26 
AnswerRe: get the list of subkeys under a specific key Pin
Hamid_RT23-Apr-09 2:53
Hamid_RT23-Apr-09 2:53 
GeneralRe: get the list of subkeys under a specific key Pin
MrKBA23-Apr-09 3:12
MrKBA23-Apr-09 3:12 
GeneralRe: get the list of subkeys under a specific key Pin
Hamid_RT23-Apr-09 4:11
Hamid_RT23-Apr-09 4:11 
AnswerRe: get the list of subkeys under a specific key Pin
Stuart Dootson23-Apr-09 3:24
professionalStuart Dootson23-Apr-09 3:24 
GeneralRe: get the list of subkeys under a specific key Pin
MrKBA23-Apr-09 4:06
MrKBA23-Apr-09 4:06 
GeneralRe: get the list of subkeys under a specific key Pin
Stuart Dootson23-Apr-09 4:20
professionalStuart Dootson23-Apr-09 4:20 
QuestionHow to convert a byte[] to Bitmap image? Pin
kapardhi23-Apr-09 2:08
kapardhi23-Apr-09 2:08 
AnswerRe: How to convert a byte[] to Bitmap image? Pin
CPallini23-Apr-09 3:01
mveCPallini23-Apr-09 3:01 
GeneralRe: How to convert a byte[] to Bitmap image? Pin
kapardhi23-Apr-09 3:03
kapardhi23-Apr-09 3:03 
GeneralRe: How to convert a byte[] to Bitmap image? Pin
CPallini23-Apr-09 5:37
mveCPallini23-Apr-09 5:37 
Questionlibcmtd.lib(strtol.obj) : error LNK2005: strtoul already defined in . . . Pin
RKP72823-Apr-09 1:52
RKP72823-Apr-09 1:52 
QuestionRe: libcmtd.lib(strtol.obj) : error LNK2005: strtoul already defined in . . . Pin
CPallini23-Apr-09 2:01
mveCPallini23-Apr-09 2:01 
AnswerRe: libcmtd.lib(strtol.obj) : error LNK2005: strtoul already defined in . . . Pin
RKP72823-Apr-09 2:18
RKP72823-Apr-09 2:18 
GeneralRe: libcmtd.lib(strtol.obj) : error LNK2005: strtoul already defined in . . . Pin
CPallini23-Apr-09 2:43
mveCPallini23-Apr-09 2:43 
AnswerRe: libcmtd.lib(strtol.obj) : error LNK2005: strtoul already defined in . . . Pin
Stuart Dootson23-Apr-09 3:21
professionalStuart Dootson23-Apr-09 3:21 
GeneralRe: libcmtd.lib(strtol.obj) : error LNK2005: strtoul already defined in . . . Pin
RKP72823-Apr-09 19:26
RKP72823-Apr-09 19:26 
GeneralRe: libcmtd.lib(strtol.obj) : error LNK2005: strtoul already defined in . . . Pin
Stuart Dootson23-Apr-09 20:06
professionalStuart Dootson23-Apr-09 20:06 
GeneralRe: libcmtd.lib(strtol.obj) : error LNK2005: strtoul already defined in . . . Pin
RKP72823-Apr-09 22:06
RKP72823-Apr-09 22:06 
GeneralRe: libcmtd.lib(strtol.obj) : error LNK2005: strtoul already defined in . . . Pin
Stuart Dootson23-Apr-09 22:18
professionalStuart Dootson23-Apr-09 22:18 
GeneralRe: libcmtd.lib(strtol.obj) : error LNK2005: strtoul already defined in . . . Pin
RKP72824-Apr-09 0:11
RKP72824-Apr-09 0:11 
Digging further into stdlib.h of VS2003 saw
#ifndef _CRTIMP
#ifdef CRTDLL
#define _CRTIMP __declspec(dllexport)
#else /* CRTDLL */
#ifdef _DLL
#define _CRTIMP __declspec(dllimport)
#else /* _DLL */
#define _CRTIMP
#endif /* _DLL */
#endif /* CRTDLL */
#endif /* _CRTIMP */

So _CRTIMP is a #define which tells whether the function is exported from or imported to the C library.


_Check_return_
Return value must not be ignored by callers of this function.

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.