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