1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
// bulletml.cpp : DLL AvP[Vp̃Gg |Cg`܂B
//
#include "stdafx.h"
#include "bulletml.h"
BOOL APIENTRY DllMain( HANDLE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}
// ̓GNX|[gꂽϐ̗łB
BULLETML_API int nBulletml=0;
// ̓GNX|[gꂽ̗łB
BULLETML_API int fnBulletml(void)
{
return 42;
}
// ̓GNX|[gꂽNX̃RXgN^łB
// NX̒`ɂĂ bulletml.h QƂĂB
CBulletml::CBulletml()
{
return;
}
|