BLOG ARTICLE 헝가리식 명명법 | 1 ARTICLE FOUND

  1. 2007.01.04 변수 명명법

변수 명명법

programming/API 2007. 1. 4. 11:59

cb           Count of Bytes          바이트 수
dw          double word             부호없는 long형 정수
h             handle                     윈도우, 비트맵, 파일 등의 핸들
sz           NullTerminated          Null 종료 문자열
ch          Characte                  문자형
a            Array                       배열
w           Word                        부호없는 정수형
i             integer                     정수형
p, lp       long pointer               포인터형
b            Boole                      논리형



BYTE             unsigned char
CHAR            char
WORD            unsigned short
DWORD          unsigned long
LONG            long
BOOL            int

AND