10 Feb
2010
10 Feb
'10
10:36 a.m.
Erich Hoover <ehoover(a)mines.edu> writes:
--- a/include/winuser.h +++ b/include/winuser.h @@ -98,6 +98,17 @@ typedef HANDLE HDWP; #define WSF_VISIBLE 1 #define DF_ALLOWOTHERACCOUNTHOOK 1
+typedef struct tagWINECURSORICON { + POINT ptHotSpot; + WORD nWidth; + WORD nHeight; + WORD nWidthBytes; + BYTE bPlanes; + BYTE bBitsPerPixel; + DWORD frame_size_and; + DWORD frame_size_xor; +} WINECURSORICON;
You can't do that, private structures have nothing to do in public header files. They also can't be part of the user driver API. -- Alexandre Julliard julliard(a)winehq.org