Line | |
---|
1 | /* $Id: OS2PALSET.H,v 1.6 2001-03-18 21:44:43 mike Exp $ */
|
---|
2 |
|
---|
3 | /*
|
---|
4 | * Defintions for OS/2 Palette functions
|
---|
5 | *
|
---|
6 | * Copyright 1998 Sander van Leeuwen
|
---|
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 | {
|
---|
17 | BYTE peRed;
|
---|
18 | BYTE peGreen;
|
---|
19 | BYTE peBlue;
|
---|
20 | BYTE peFlags;
|
---|
21 | } PALETTEENTRY;
|
---|
22 | #endif
|
---|
23 |
|
---|
24 | //void OS2SetPhysPalette(PALETTEENTRY *pDirectXPal);
|
---|
25 | void OS2SetPhysPalette(void *pal);
|
---|
26 | void OS2ResetPhysPalette();
|
---|
27 |
|
---|
28 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.