Release 950606
[wine/multimedia.git] / include / palette.h
blobd5145f24cb14cb991f58adf3cb45841698b0a37a
1 /*
2 * GDI palette definitions
4 * Copyright 1994 Alexandre Julliard
5 */
7 #ifndef __WINE_PALETTE_H
8 #define __WINE_PALETTE_H
10 #include "gdi.h"
12 #ifndef WINELIB
13 #pragma pack(1)
14 #endif
16 /* GDI logical palette object */
17 typedef struct
19 GDIOBJHDR header;
20 LOGPALETTE logpalette WINE_PACKED;
21 } PALETTEOBJ;
23 #ifndef WINELIB
24 #pragma pack(4)
25 #endif
27 extern int PALETTE_GetObject( PALETTEOBJ * palette, int count, LPSTR buffer );
29 #endif /* __WINE_FONT_H */