Line | |
---|
1 | /* $Id: OS2PALSET.H,v 1.1 1999-05-24 20:19:37 ktk Exp $ */
|
---|
2 |
|
---|
3 | /*
|
---|
4 | * OS/2 Palette function definitions
|
---|
5 | *
|
---|
6 | * Copyright 1998 Sander van Leeuwen (sandervl@xs4all.nl)
|
---|
7 | *
|
---|
8 | * Project Odin Software License can be found in LICENSE.TXT
|
---|
9 | *
|
---|
10 | */
|
---|
11 | #ifndef __OS2PALSET_H__
|
---|
12 | #define __OS2PALSET_H__
|
---|
13 |
|
---|
14 | #ifndef __OS2PALETTE_H__
|
---|
15 | typedef struct tagPALETTEENTRY {
|
---|
16 | BYTE peRed;
|
---|
17 | BYTE peGreen;
|
---|
18 | BYTE peBlue;
|
---|
19 | BYTE peFlags;
|
---|
20 | } PALETTEENTRY;
|
---|
21 | #endif
|
---|
22 |
|
---|
23 | //void OS2SetPhysPalette(PALETTEENTRY *pDirectXPal);
|
---|
24 | void OS2SetPhysPalette(HWND hwndClient, void *pal);
|
---|
25 | void OS2ResetPhysPalette();
|
---|
26 |
|
---|
27 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.