Click here to Skip to main content
15,879,490 members
Articles / Programming Languages / Visual Basic
Article

Calling DLLs in VB and C++

Rate me:
Please Sign up or sign in to vote.
2.21/5 (17 votes)
20 Mar 20022 min read 242.3K   26   50
Short description of use of __stdcall and __cdecl in VB and C++.

DLL Calling conventions:

DLL functions have several calling conventions, with the two most common being __cdecl and __stdcall. Most Windows API functions are written with the __stdcall declaration, and it is the most commonly used in DLLs. These two declarations are very different, and though they can be interchanged in the calling routine in C++, doing so will wreak havoc on the program, creating serious memory leaks! The actual difference in these calling conventions is not really as important as making sure to not get them mixed up. One thing to remember: when using DLLs written in one language, and using them in another, the __stdcall calling convention is usually the most appropriate.

Calling DLLs dynamically in VB:

In VB, loading a DLL requires the use of a __stdcall calling convention DLL function.

Calling DLLs dynamically in C++:

In C++, both calling conventions of __stdcall and __cdecl can be used (but not interchanged!). When prototyping the DLL function, __cdecl is assumed and need not be explicitly typed into the typedef statement. However, when dynamically calling a __stdcall DLL function, it must be explicitly written into the typedef statement. There was some confusion on this, because the statically loaded Windows API functions do not require this anywhere when calling the DLL functions. However, this is because the typedefs already exist in the system-level files of the compiler.

If anyone has questions on this, don't hesitate to ask. As simple as this looks, I racked my brain trying to figure out why, when I was dynamically calling the DLL functions (which were written as __stdcall for VB portability, and declared default in C++, thus __cdecl), my program would run fine until sometime after the DLL call. At that point, all hell broke loose, with no warning. When I would recompile the DLLs using the __cdecl calling convention, everything was just fine. Now I know, and thought I'd save you all some grief at some point down the road, if you should also run into this.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Denmark Denmark
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Questionhow to call vb dll function from c/c++ application Pin
baranikumar_v12-Mar-11 3:12
baranikumar_v12-Mar-11 3:12 
QuestionHow to access printer parallel prot using Inpout32.dll Pin
messeret24-Apr-08 20:48
messeret24-Apr-08 20:48 
Questionhow to access the dll functions written in Devc++ in another Console application (DevC++) Pin
kkchennai10-Mar-06 0:14
kkchennai10-Mar-06 0:14 
Please help me
GeneralProblems with GetProcAdress Pin
placca7-Nov-05 6:37
placca7-Nov-05 6:37 
GeneralRe: Problems with GetProcAdress Pin
Don Box2-Jan-07 20:56
Don Box2-Jan-07 20:56 
GeneralLoading a dll and using a fucntion in the dll Pin
JLTucker3-Jan-05 12:59
JLTucker3-Jan-05 12:59 
GeneralFunction Pointer was not created by a delegate Pin
B Kalyan Chakravarthy29-Sep-04 0:55
sussB Kalyan Chakravarthy29-Sep-04 0:55 
Generaldll calling error Pin
sriniwasit17-Sep-04 0:53
sriniwasit17-Sep-04 0:53 
Generaldll calling error Pin
sriniwas,24 m chennai17-Sep-04 0:44
susssriniwas,24 m chennai17-Sep-04 0:44 
GeneralLibrary .h in VB Pin
pmcborges17-Jun-04 1:34
pmcborges17-Jun-04 1:34 
GeneralOnKeyDown & PropSheets Pin
Cambalindo19-May-04 12:32
Cambalindo19-May-04 12:32 
GeneralRe: Sorry Pin
Cambalindo19-May-04 12:47
Cambalindo19-May-04 12:47 
Questionquestion ?????? Pin
Anonymous19-May-04 12:03
Anonymous19-May-04 12:03 
Questionquestion ?????? Pin
Anonymous19-May-04 11:33
Anonymous19-May-04 11:33 
GeneralVB and VC++ callbacks Pin
Member 47083811-Jul-03 1:18
Member 47083811-Jul-03 1:18 
GeneralRe: VB and VC++ callbacks Pin
Oleg Dobrokhotov13-Jun-04 18:08
sussOleg Dobrokhotov13-Jun-04 18:08 
GeneralRe: VB and VC++ callbacks Pin
beerc0der23-Jun-04 9:15
beerc0der23-Jun-04 9:15 
GeneralRe: VB and VC++ callbacks Pin
Oleg Dobrokhotov23-Jun-04 10:22
sussOleg Dobrokhotov23-Jun-04 10:22 
GeneralRe: VB and VC++ callbacks Pin
beerc0der23-Jun-04 10:39
beerc0der23-Jun-04 10:39 
GeneralRe: VB and VC++ callbacks Pin
Tomaz Rotovnik9-Jan-05 20:01
Tomaz Rotovnik9-Jan-05 20:01 
GeneralDLL exceptions in VB Pin
cioina12-Jun-03 19:07
cioina12-Jun-03 19:07 
GeneralCalling a DLL Pin
Anonymous7-May-03 5:40
Anonymous7-May-03 5:40 
GeneralRe: Calling a DLL Pin
GTS202012-Sep-03 3:00
GTS202012-Sep-03 3:00 
GeneralRe: Calling a DLL Pin
Anonymous15-Sep-04 22:19
Anonymous15-Sep-04 22:19 
Generalcalling dll in VB in Win NT Pin
Anonymous7-Apr-03 3:37
Anonymous7-Apr-03 3:37 

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.