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

C / C++ / MFC

 
GeneralRe: Thanks, and also... Pin
Shog916-Jul-02 9:33
sitebuilderShog916-Jul-02 9:33 
Generalthank you Pin
ns16-Jul-02 9:25
ns16-Jul-02 9:25 
Generaldllimport vs dllexport Pin
Mike Zinni16-Jul-02 4:09
Mike Zinni16-Jul-02 4:09 
GeneralRe: dllimport vs dllexport Pin
Alexandru Savescu16-Jul-02 4:17
Alexandru Savescu16-Jul-02 4:17 
GeneralRe: dllimport vs dllexport Pin
Mike Zinni16-Jul-02 4:45
Mike Zinni16-Jul-02 4:45 
GeneralRe: dllimport vs dllexport Pin
Mike Zinni16-Jul-02 5:02
Mike Zinni16-Jul-02 5:02 
GeneralRe: dllimport vs dllexport Pin
Mike Nordell16-Jul-02 5:24
Mike Nordell16-Jul-02 5:24 
GeneralRe: dllimport vs dllexport Pin
Daniel Lohmann17-Jul-02 14:23
Daniel Lohmann17-Jul-02 14:23 
No, thats not name mangling for C-style __stdcall calling convention, but is the name mangling of the C++ compiler (so called "decorated names").

The reason for this is that C++ supports overloading, but at link time every function identifier needs to be unique. So the C+++ compiler codes the numer and types of the functions arguments into the name and links against this name. The @0 in you case indicates a function without arguments.

Note that decorated names are always used if the functions are exported with __declspec(dllexport).
If possible you should link against the .lib file and so implictly load your DLL. You may also use the VC6 and above delay load feature.

--

Daniel Lohmann

http://www.losoft.de
QuestionSTL iterators? Pin
Fredrik Skog16-Jul-02 4:00
Fredrik Skog16-Jul-02 4:00 
AnswerRe: STL iterators? Pin
Alexandru Savescu16-Jul-02 4:08
Alexandru Savescu16-Jul-02 4:08 
GeneralRe: STL iterators? Pin
Fredrik Skog16-Jul-02 4:12
Fredrik Skog16-Jul-02 4:12 
GeneralRe: STL iterators? Pin
Alexandru Savescu16-Jul-02 4:22
Alexandru Savescu16-Jul-02 4:22 
GeneralRe: STL iterators? Pin
Fredrik Skog16-Jul-02 4:30
Fredrik Skog16-Jul-02 4:30 
GeneralRe: STL iterators? Pin
Alexandru Savescu16-Jul-02 4:35
Alexandru Savescu16-Jul-02 4:35 
GeneralRe: STL iterators? Pin
Fredrik Skog16-Jul-02 4:42
Fredrik Skog16-Jul-02 4:42 
AnswerNow I got it!!! Pin
Alexandru Savescu16-Jul-02 4:43
Alexandru Savescu16-Jul-02 4:43 
GeneralRe: Now I got it!!! Pin
Fredrik Skog16-Jul-02 4:48
Fredrik Skog16-Jul-02 4:48 
GeneralCFile access Pin
Raphael Kindt16-Jul-02 3:28
Raphael Kindt16-Jul-02 3:28 
GeneralRe: CFile access Pin
Fredrik Skog16-Jul-02 3:47
Fredrik Skog16-Jul-02 3:47 
GeneralRe: CFile access Pin
Raphael Kindt16-Jul-02 4:23
Raphael Kindt16-Jul-02 4:23 
Generalwant to anchor MDI child CFormView to Frame Pin
ns16-Jul-02 3:24
ns16-Jul-02 3:24 
GeneralI think cs.style &= ~WS_THICKFRAME; Pin
ns16-Jul-02 3:30
ns16-Jul-02 3:30 
GeneralDelay by pull mode Pin
Member 106269816-Jul-02 2:59
Member 106269816-Jul-02 2:59 

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.