Data Type
 FrontPage|FindPage|TitleIndex|RecentChanges|UserPreferences E D R S P I M H RSS

Collision DetectionConcurrencyPatternsCppProgrammingD3DPOOL ¿­°ÅÇü Á¦´ë·Î ¾Ë±âD3DQuery ¸¦ ÀÌ¿ëÇÑ Occlusion Culling › Data Types
Contents:
1 C/C++ Data Types
1.1 Signed Types
1.2 Unsigned Types
1.3 Win32 Data Types
1.4 String Types
1.5 Constant Types
2 Windowns Data Types
2.1 Handle Types
2.2 Parameter Types
2.3 Calling Convention Types
2.4 Size Types
3 Reference


1 C/C++ Data Types #


1.1 Signed Types #


TypeDefinitionPointer
BOOL Boolean variable ( should be TRUE or FALSE ). PBOOL
CHAR 8-bit Windows ( ANSI ) character.
For more information, see Character Sets Used By Fonts.
PCHAR
SHORT Short integer ( 16 bits ). PSHORT
INT 32-bit signed integer. PINT
LONG 32-bit signed integer. PLONG
FLOAT Floating-point variable. PFLOAT
VOID Any type. PVOID

1.2 Unsigned Types #


TypeDefinitionPointer
UCHAR Unsigned CHAR. PUCHAR
USHORT Unsigned SHORT. PUSHORT
UINT Unsigned INT. PUINT
ULONG Unsigned LONG. PULONG

1.3 Win32 Data Types #


TypeDefinitionPointer
BYTE Byte ( 8 bits ). PBYTE
WORD 16-bit unsigned integer. PDWORD
DWORD 32-bit unsigned integer. PWORD

1.4 String Types #


TypeDefinitionPointer
CHAR 8-bit Windows ( ANSI ) character.
For more information, see Character Sets Used By Fonts.
PCHAR
WCHAR 16-bit Unicode character.
For more information, see Character Sets Used By Fonts.
PWCHAR
TCHAR A WCHAR if UNICODE is defined, a CHAR otherwise. PTCHAR

TypeDefinitionConstant
PSTR Pointer to a null-terminated string of 8-bit Windows ( ANSI ) characters.
For more information, see Character Sets Used By Fonts.
PCSTR
PWSTR Pointer to a null-terminated string of 16-bit Unicode characters.
For more information, see Character Sets Used By Fonts.
PCWSTR
PTSTR A PWSTR if UNICODE is defined, a PSTR otherwise. PCTSTR

1.5 Constant Types #


TypeDefinition
CONST Variable whose value is to remain constant during execution.


2 Windowns Data Types #


2.1 Handle Types #


TypeDefinition
HANDLE Handle to an object.
PHANDLE Pointer to a HANDLE.
HWND Handle to a window.
HDC Handle to a device context ( DC ).

2.2 Parameter Types #


TypeDefinition
LPARAM Message parameter.
WPARAM Message parameter.

2.3 Calling Convention Types #


TypeDefinition
CALLBACK Calling convention for callback functions.
WINAPI Calling convention for the Win32 API.

2.4 Size Types #


TypeDefinition
SIZE_T The maximum number of bytes to which a pointer can point.
Use for a count that must span the full range of a pointer.
SSIZE_T Signed SIZE_T.


3 Reference #


  • Win32 Data Types - The data types supported by the Microsoft¢ç Win32¢ç API

EditText|FindPage|DeletePage|LikePages| Valid XHTML 1.0! Valid CSS! powered by MoniWiki