LPDWORD=DWORD* ???
哪位详细解释一下。
是不是LPXXX=XXX*?
问题点数:20、回复次数:3Top
1 楼plusplus(面向对象)回复于 2001-12-12 16:31:17 得分 20
typedef DWORD *LPDWORD
并不是所有的LPXXX=XXX*.
Top
2 楼netxray(倦意的笑容)回复于 2001-12-12 16:42:46 得分 0
例如?Top
3 楼plusplus(面向对象)回复于 2001-12-12 17:21:32 得分 0
if you don't use the following sentence:
typedef DWORD *LPDWORD;
then you can't use LPDWORD.
while, in fact, the sentence is in some header file of Windows SDK.
and in fact, many data types have their own typedefs. for example:
typedef POINT *LPPOINT;
typedef RECT *LPRECT;
Top




