mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Remove no longer needed stuff
svn path=/trunk/; revision=6254
This commit is contained in:
parent
8d31e83bb5
commit
3e4cc29925
1 changed files with 0 additions and 39 deletions
|
@ -91,43 +91,4 @@ typedef struct
|
|||
GRPCURSORICONDIRENTRY idEntries[1] PACKED; // The entries for each image
|
||||
} PACKED GRPCURSORICONDIR;
|
||||
|
||||
/* GDI logical Icon/Cursor object */
|
||||
typedef struct _ICONCURSOROBJ
|
||||
{
|
||||
BOOL fIcon;
|
||||
DWORD xHotspot;
|
||||
DWORD yHotspot;
|
||||
BITMAP ANDBitmap;
|
||||
BITMAP XORBitmap;
|
||||
} ICONCURSOROBJ, *PICONCURSOROBJ;
|
||||
|
||||
/* Internal interfaces */
|
||||
#define ICONCURSOROBJ_AllocIconCursor() \
|
||||
((HICON) GDIOBJ_AllocObj (sizeof (ICONCURSOROBJ), GDI_OBJECT_TYPE_ICONCURSOR, (GDICLEANUPPROC) IconCursor_InternalDelete))
|
||||
|
||||
#define ICONCURSOROBJ_LockIconCursor(hICObj) \
|
||||
((PICONCURSOROBJ) GDIOBJ_LockObj ((HGDIOBJ) hICObj, GDI_OBJECT_TYPE_ICONCURSOR))
|
||||
|
||||
#define ICONCURSOROBJ_UnlockIconCursor(hICObj) GDIOBJ_UnlockObj ((HGDIOBJ) hICObj, GDI_OBJECT_TYPE_ICONCURSOR)
|
||||
|
||||
|
||||
BOOL FASTCALL IconCursor_InternalDelete( PICONCURSOROBJ pIconCursor );
|
||||
|
||||
/* User Entry Points */
|
||||
HICON
|
||||
STDCALL
|
||||
NtGdiCreateIcon (
|
||||
BOOL fIcon,
|
||||
INT Width,
|
||||
INT Height,
|
||||
UINT Planes,
|
||||
UINT BitsPerPel,
|
||||
DWORD xHotspot,
|
||||
DWORD yHotspot,
|
||||
const VOID *ANDBits,
|
||||
const VOID *XORBits
|
||||
);
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue