c#中的数据类型如何与API中的类型定义对应
Unmanaged type in Wtypes.h |
Unmanaged C language type |
Managed class name |
Description |
---|---|---|---|
HANDLE |
void* |
32 bits on 32-bit Windows operating systems, 64 bits on 64-bit Windows operating systems. |
|
BYTE |
unsigned char |
8 bits |
|
SHORT |
short |
16 bits |
|
WORD |
unsigned short |
16 bits |
|
INT |
int |
32 bits |
|
UINT |
unsigned int |
32 bits |
|
LONG |
long |
32 bits |
|
BOOL |
long |
32 bits |
|
DWORD |
unsigned long |
32 bits |
|
ULONG |
unsigned long |
32 bits |
|
CHAR |
char |
Decorate with ANSI. |
|
LPSTR |
char* |
Decorate with ANSI. |
|
LPCSTR |
Const char* |
Decorate with ANSI. |
|
LPWSTR |
wchar_t* |
Decorate with Unicode. |
|
LPCWSTR |
Const wchar_t* |
Decorate with Unicode. |
|
FLOAT |
Float |
32 bits |
|
DOUBLE |
Double |
64 bits |
固定大小的缓冲区
http://msdn.microsoft.com/zh-cn/library/zycewsya(VS.80).aspx