Click here to Skip to main content
15,910,872 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Anyone I need some advice and would like to be directed in the right direction if possible. Pin
Stephen Hewitt4-Mar-09 16:49
Stephen Hewitt4-Mar-09 16:49 
GeneralRe: Anyone I need some advice and would like to be directed in the right direction if possible. Pin
FISH7864-Mar-09 17:07
FISH7864-Mar-09 17:07 
GeneralRe: Anyone I need some advice and would like to be directed in the right direction if possible. Pin
Stephen Hewitt4-Mar-09 17:19
Stephen Hewitt4-Mar-09 17:19 
GeneralRe: Anyone I need some advice and would like to be directed in the right direction if possible. Pin
FISH7864-Mar-09 17:22
FISH7864-Mar-09 17:22 
QuestionProblem reading xml string into data table Pin
Renukapadhamanaban4-Mar-09 12:36
Renukapadhamanaban4-Mar-09 12:36 
QuestionHttpSendRequest Pin
Steve Thresher4-Mar-09 12:26
Steve Thresher4-Mar-09 12:26 
QuestionHelp Accessing Functions in a Dll Pin
Naturality4-Mar-09 10:17
Naturality4-Mar-09 10:17 
AnswerRe: Help Accessing Functions in a Dll Pin
Stuart Dootson4-Mar-09 10:28
professionalStuart Dootson4-Mar-09 10:28 
Those extern "C" statements look wrong - especially as a) you're using namespaces and b) you're enclosing class definitions in them. Now, namespaces and classes are C++ features - they really aren't compatible with extern "C", which specifies that the names enclosed by the extern "C" are exported as undecorated, C names rather than decorated C++ names.

BTW - a decorated C++ name is something like ?CreateRot@Functions@ELQ@@SA_NXZ, your missing symbol...

So - try removing all extern "C" things. The only reason for extern "C" is to export functions compiled with a C++ compiler in a form compatible with C. You're exporting namespaced functions and classes - they will never be compatible with C...

Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

GeneralRe: Help Accessing Functions in a Dll Pin
Naturality5-Mar-09 5:17
Naturality5-Mar-09 5:17 
GeneralRe: Help Accessing Functions in a Dll Pin
Stuart Dootson5-Mar-09 15:56
professionalStuart Dootson5-Mar-09 15:56 
QuestionHow can I have tow different view type of the same document in a SDI Doc-View based app? Pin
Joseph Marzbani4-Mar-09 9:41
Joseph Marzbani4-Mar-09 9:41 
AnswerRe: How can I have tow different view type of the same document in a SDI Doc-View based app? Pin
Stuart Dootson4-Mar-09 10:22
professionalStuart Dootson4-Mar-09 10:22 
GeneralRe: How can I have tow different view type of the same document in a SDI Doc-View based app? Pin
Joseph Marzbani4-Mar-09 18:09
Joseph Marzbani4-Mar-09 18:09 
AnswerRe: How can I have tow different view type of the same document in a SDI Doc-View based app? Pin
«_Superman_»4-Mar-09 17:16
professional«_Superman_»4-Mar-09 17:16 
QuestionConfused Pin
su_penguin4-Mar-09 8:40
su_penguin4-Mar-09 8:40 
AnswerRe: Confused Pin
Adam Maras4-Mar-09 9:04
Adam Maras4-Mar-09 9:04 
GeneralRe: Confused Pin
su_penguin4-Mar-09 9:32
su_penguin4-Mar-09 9:32 
GeneralRe: Confused Pin
CPallini4-Mar-09 10:10
mveCPallini4-Mar-09 10:10 
GeneralRe: Confused Pin
«_Superman_»4-Mar-09 17:20
professional«_Superman_»4-Mar-09 17:20 
AnswerRe: Confused Pin
Jijo.Raj4-Mar-09 16:38
Jijo.Raj4-Mar-09 16:38 
QuestionInfantile question? Pin
Ric Ashton4-Mar-09 8:00
Ric Ashton4-Mar-09 8:00 
AnswerRe: Infantile question? Pin
Eytukan4-Mar-09 8:04
Eytukan4-Mar-09 8:04 
AnswerRe: Infantile question? Pin
Adam Maras4-Mar-09 8:05
Adam Maras4-Mar-09 8:05 
GeneralRe: Infantile question? Pin
CPallini4-Mar-09 10:02
mveCPallini4-Mar-09 10:02 
AnswerRe: Infantile question? Pin
CPallini4-Mar-09 10:04
mveCPallini4-Mar-09 10:04 

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.