File: bulletml.cpp

package info (click to toggle)
bulletml 0.0.6-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 724 kB
  • ctags: 1,346
  • sloc: cpp: 7,642; xml: 810; perl: 184; makefile: 167; yacc: 124
file content (39 lines) | stat: -rw-r--r-- 799 bytes parent folder | download | duplicates (8)
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; 
}