32 lines
822 B
Plaintext
32 lines
822 B
Plaintext
Import Libraries
|
|
~~~~~~~~~~~~~~~~
|
|
|
|
These are used with C/C++ languages so that the compiler knows what functions
|
|
can be found in which DLLs. You need to link the appropriate import library to
|
|
your source code so that the DLL can be called correctly.
|
|
|
|
Microsoft import libraries
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
dpwin64.lib
|
|
dpwin64debug.lib
|
|
DinkeyChange64.lib
|
|
DinkeyChange64Debug.lib
|
|
|
|
Borland C++ Builder import libraries
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
dpwin64_borland.a
|
|
dpwin64debug_borland.a
|
|
DinkeyChange64_borland.a
|
|
DinkeyChange64Debug_borland.a
|
|
|
|
Dev C++ and MinGW import libraries
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
libdpwin64.a
|
|
libdpwin64debug.a
|
|
libDinkeyChange64.a
|
|
libDinkeyChange64Debug.a
|
|
|
|
If you look at the sample code for the relevant language / compiler then it
|
|
will tell you how to use these import libraries.
|
|
|