|
/* Include files needed to compile DLL */
#include <windows.h>
#include <cvirte.h> /* 外部コンパイラを使用する場合に必要 */
#include <userint.h>
BOOL __stdcall DllMain (HINSTANCE hinstDLL, DWORD fdwReason,
LPVOID lpvReserved)
{
return TRUE;
}
DLLEXPORT
修飾子をつける。次の例は、引数を2倍する関数である。
void DLLEXPORT twise (double *my)
{
*my *=2;
}
|