a array
b boolean
by byte
c char //有符号型字符
cb char byte //无符号型字符(没多大用处)
cr colorref //颜色参考值
cx,cy length of x,y (shortint) //坐标差(长度)
dw double word
fn function
h handle
i integer
m_ member of a class
n short integer
np near pointer
p pointer lp long pointer
s string
sz string with zero end //以字符\'\\0\'结尾的字符串
tm text //文本内容
w word
x,y coordinate //坐标
类名一般没有说明字符,例如theapp. 用在其他类中加m_就行。要注意的是:某些类也有类似于匈牙利命名法的缩写。例如:cstatusbar m_wndstatusbar;这里的wnd表示窗口类,但是这种命名法不是标准的匈牙利命名法的一部分。
