Erich Hoover ehoover@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.