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

C / C++ / MFC

 
GeneralRe: Searching binary file Pin
Stephen Hewitt23-Mar-06 16:28
Stephen Hewitt23-Mar-06 16:28 
GeneralRe: Searching binary file Pin
delta3223-Mar-06 17:50
delta3223-Mar-06 17:50 
GeneralRe: Searching binary file Pin
Stephen Hewitt23-Mar-06 18:30
Stephen Hewitt23-Mar-06 18:30 
GeneralRe: Searching binary file Pin
delta3223-Mar-06 18:54
delta3223-Mar-06 18:54 
QuestionFor What reason AFX_GETMODULE_STATE macro is used? Pin
charpointer23-Mar-06 14:38
charpointer23-Mar-06 14:38 
AnswerRe: For What reason AFX_GETMODULE_STATE macro is used? Pin
_AnsHUMAN_ 23-Mar-06 16:37
_AnsHUMAN_ 23-Mar-06 16:37 
Questionunsolved external symbol Pin
zms41323-Mar-06 13:46
zms41323-Mar-06 13:46 
AnswerRe: unsolved external symbol Pin
Stephen Hewitt23-Mar-06 15:01
Stephen Hewitt23-Mar-06 15:01 
The reason is that a declaration of the function "unsigned long __cdecl CBIRTextTamura" is present but there is no definition. ie.
// In a header file somewhere.
unsigned long __cdecl CBIRTextTamura(struct tagCBIRIMAGE *,struct tagCBIRTEXTUREDATA *,unsigned long,unsigned long);
 
// But there is no iplementation such as this (in a C/CPP file):
unsigned long __cdecl CBIRTextTamura(struct tagCBIRIMAGE *,struct tagCBIRTEXTUREDATA *,unsigned long,unsigned long)
{
     // Do stuff.
     return 0;
}


The most likely cause is that you forgot to add the .CPP file that contains the defintion to your project.

Steve
GeneralRe: unsolved external symbol Pin
zms41323-Mar-06 15:31
zms41323-Mar-06 15:31 
GeneralRe: unsolved external symbol Pin
Stephen Hewitt23-Mar-06 15:52
Stephen Hewitt23-Mar-06 15:52 
GeneralRe: unsolved external symbol Pin
Waldermort23-Mar-06 23:03
Waldermort23-Mar-06 23:03 
GeneralRe: unsolved external symbol Pin
Stephen Hewitt23-Mar-06 23:07
Stephen Hewitt23-Mar-06 23:07 
QuestionUrgent! How to convert a UINT8 data type variable to char? Pin
Ting Li Che23-Mar-06 12:34
Ting Li Che23-Mar-06 12:34 
AnswerRe: Urgent! How to convert a UINT8 data type variable to char? Pin
Jörgen Sigvardsson23-Mar-06 12:39
Jörgen Sigvardsson23-Mar-06 12:39 
GeneralRe: Urgent! How to convert a UINT8 data type variable to char? Pin
Ting Li Che24-Mar-06 2:58
Ting Li Che24-Mar-06 2:58 
GeneralRe: Urgent! How to convert a UINT8 data type variable to char? Pin
Jörgen Sigvardsson24-Mar-06 4:19
Jörgen Sigvardsson24-Mar-06 4:19 
GeneralRe: Urgent! How to convert a UINT8 data type variable to char? Pin
Ting Li Che24-Mar-06 4:42
Ting Li Che24-Mar-06 4:42 
QuestionPop-up Menu Font Pin
JBAK_CP23-Mar-06 11:23
JBAK_CP23-Mar-06 11:23 
AnswerRe: Pop-up Menu Font Pin
_AnsHUMAN_ 23-Mar-06 16:39
_AnsHUMAN_ 23-Mar-06 16:39 
Questionwhat is the difference ...? Pin
yaaqub23-Mar-06 11:20
yaaqub23-Mar-06 11:20 
AnswerRe: what is the difference ...? Pin
RChin23-Mar-06 11:41
RChin23-Mar-06 11:41 
AnswerRe: what is the difference ...? Pin
PJ Arends23-Mar-06 11:46
professionalPJ Arends23-Mar-06 11:46 
GeneralRe: what is the difference ...? Pin
normanS23-Mar-06 17:58
normanS23-Mar-06 17:58 
Questionhow to connect to a SQL server: (windows form app--VC++7.NET) Pin
luhfluh23-Mar-06 10:34
luhfluh23-Mar-06 10:34 
QuestionHow to Capture Atl+Tab combinational Key for my SDI Application Pin
charpointer23-Mar-06 9:14
charpointer23-Mar-06 9:14 

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.