alpha.h
上传用户:garry_shen
上传日期:2015-04-15
资源大小:45647k
文件大小:0k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. //alpha.cpp 's Head File
  2. #ifndef _ALPHA_H__
  3. #define _ALPHA_H__
  4. struct AlphaData
  5. {
  6. int width;
  7. int height;
  8. unsigned char * buf;
  9. };
  10. BOOL GetAlphaData(const char * FileName, AlphaData * pAData);
  11. void DrawAlpha5(COLORREF color);
  12. void DrawAlpha6(COLORREF color);
  13. #endif