source: trunk/src/ddraw/OS2PALSET.H@ 144

Last change on this file since 144 was 97, checked in by phaller, 26 years ago

Add: added cvs variable $Id$ to source files.

File size: 607 bytes
Line 
1/* $Id: OS2PALSET.H,v 1.3 1999-06-10 17:10:56 phaller 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);
24void OS2SetPhysPalette(HWND hwndClient, void *pal);
25void OS2ResetPhysPalette();
26
27#endif
Note: See TracBrowser for help on using the repository browser.