#ifndef _FLASHPALETTE_H_ #define _FLASHPALETTE_H_ #include <windows.h> struct SColorInfo; class NativePlayerWnd; class NativePalette { public: static void GetScreenPalette( SColorTable* ctab ); // ------- The following are Windows only methods ----------------- static void ClearSystemPalette( HWND hwnd ); static HPALETTE CreateIdentityPalette( HWND hwnd ); private: static SColorInfo* screenColorInfo; // the current palette information }; #endif