source: dev/trunk/ab5.0/abdev/res_TheText/res.cpp

Last change on this file was 829, checked in by イグトランス (egtra), 12 years ago

svn:eol-styleとsvn:mime-type(文字コード指定含む)の設定

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain; charset=Shift_JIS
File size: 274 bytes
Line 
1#include <windows.h>
2
3BOOL WINAPI DllMain(HANDLE hDLL,DWORD dwReason,LPVOID lpReserved){
4 switch(dwReason){
5 case DLL_PROCESS_ATTACH:
6 break;
7 case DLL_PROCESS_DETACH:
8 break;
9 case DLL_THREAD_ATTACH:
10 case DLL_THREAD_DETACH:
11 default:
12 break;
13 }
14 return TRUE;
15}
Note: See TracBrowser for help on using the repository browser.