color.h 904 B

12345678910111213141516171819202122232425
  1. //******************************************************************************************
  2. // color.h - This file contains the definitions for the Color Tables
  3. //
  4. // MechCommander 2
  5. //
  6. //---------------------------------------------------------------------------//
  7. // Copyright (C) Microsoft Corporation. All rights reserved. //
  8. //===========================================================================//
  9. #ifndef COLOR_H
  10. #define COLOR_H
  11. //----------------------------------------------------------------------------------
  12. // Include Files
  13. #ifndef DSTD_H
  14. #include "dstd.h"
  15. #endif
  16. //----------------------------------------------------------------------------------
  17. void initColorTables (void);
  18. void destroyColorTables (void);
  19. DWORD *getColorTable (long tableNum);
  20. //----------------------------------------------------------------------------------
  21. #endif