64bit 고려
__int64
참고 : 
[MS-DTYP]: Windows Data Types : http://msdn.microsoft.com/en-us/library/cc230273(PROT.10).aspx
64 Bit 프로그래밍 시 주의할 점 : http://nsjokt.springnote.com/pages/2781920
32bit의 calling convention은 __cdecl, __stdcall, __fastcall, __thiscall
64bit의 calling convention은 __fastcall 하나로 통일됨(32bit의 __fastcall과는 다름)
64bit는 inline assembly(__asm) 사용 불가
pointer
32bit의 pointer는 4 bytes
64bit의 pointer는 8 bytes
handle이 void* 이므로 주의