Click here to Skip to main content
15,922,407 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralPlease Help: Driving me crazy..... Pin
...---...28-Oct-04 4:43
...---...28-Oct-04 4:43 
GeneralRe: Please Help: Driving me crazy..... Pin
Maximilien28-Oct-04 5:13
Maximilien28-Oct-04 5:13 
GeneralRe: Please Help: Driving me crazy..... Pin
Anonymous28-Oct-04 5:41
Anonymous28-Oct-04 5:41 
Generalhelp! Can't BitBlt! Pin
sagmam28-Oct-04 4:17
sagmam28-Oct-04 4:17 
GeneralRe: help! Can't BitBlt! Pin
Antony M Kancidrowski28-Oct-04 5:03
Antony M Kancidrowski28-Oct-04 5:03 
GeneralC library and C++ application Pin
[CoY0te]28-Oct-04 3:28
[CoY0te]28-Oct-04 3:28 
GeneralRe: C library and C++ application Pin
Blake Miller28-Oct-04 7:05
Blake Miller28-Oct-04 7:05 
GeneralRe: C library and C++ application Pin
John R. Shaw28-Oct-04 7:05
John R. Shaw28-Oct-04 7:05 
The usual problem is that C linking is not specifed in the C header files. Therefor, the linker mangles the name found in the header file.

#ifdef __cplusplus
extern "C" {
#endif
/* C-Funcion prototypes */
#ifdef __cplusplus
}
#endif

The error message you show does not seem to imply that this is the problem, but it is well worth checking out.

Note: A function name mangled with an underscore in the error message is just the internal name of the function generated by the compilier (you may ignore the underscore). If you had named you function _Func the the error message would have called it __Func. Remember leading underscores are supposed to be reserved for vender/specific global variable/function names.

Well I do not know it this helped.

Good Luck!

INTP
GeneralRe: C library and C++ application Pin
[CoY0te]29-Oct-04 0:59
[CoY0te]29-Oct-04 0:59 
Questionhow to assign a specific ip address to server and client Pin
syaks28-Oct-04 2:19
syaks28-Oct-04 2:19 
Questionget the actual selected file in windows explorer??? Pin
mightyCoCo28-Oct-04 2:18
mightyCoCo28-Oct-04 2:18 
AnswerRe: get the actual selected file in windows explorer??? Pin
David Crow28-Oct-04 3:55
David Crow28-Oct-04 3:55 
GeneralRe: get the actual selected file in windows explorer??? Pin
mightyCoCo28-Oct-04 4:17
mightyCoCo28-Oct-04 4:17 
GeneralRe: get the actual selected file in windows explorer??? Pin
David Crow28-Oct-04 5:17
David Crow28-Oct-04 5:17 
GeneralRe: get the actual selected file in windows explorer??? Pin
mightyCoCo28-Oct-04 23:43
mightyCoCo28-Oct-04 23:43 
GeneralRe: get the actual selected file in windows explorer??? Pin
mightyCoCo29-Oct-04 0:19
mightyCoCo29-Oct-04 0:19 
QuestionHelp For Memory Leak ? Pin
Amarelia28-Oct-04 1:51
Amarelia28-Oct-04 1:51 
AnswerRe: Help For Memory Leak ? Pin
jmkhael28-Oct-04 2:56
jmkhael28-Oct-04 2:56 
AnswerRe: Help For Memory Leak ? Pin
[CoY0te]28-Oct-04 3:33
[CoY0te]28-Oct-04 3:33 
GeneralMultiple threads and MFC Pin
Anonymous28-Oct-04 1:43
Anonymous28-Oct-04 1:43 
GeneralRe: Multiple threads and MFC Pin
Blake Miller28-Oct-04 7:09
Blake Miller28-Oct-04 7:09 
GeneralTooltips for Combo Pin
balajeedurai28-Oct-04 1:40
balajeedurai28-Oct-04 1:40 
QuestionWant to find Memory Leak in my C++ DLL ? Pin
Anonymous28-Oct-04 1:33
Anonymous28-Oct-04 1:33 
AnswerRe: Want to find Memory Leak in my C++ DLL ? Pin
V.28-Oct-04 3:30
professionalV.28-Oct-04 3:30 
GeneralCountry combo box Pin
verma-rahul28-Oct-04 1:13
verma-rahul28-Oct-04 1:13 

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.