SDL_blendmode.h 357 B

1234567891011121314151617181920212223242526
  1. #ifndef _SDL_blendmode_h
  2. #define _SDL_blendmode_h
  3. #include "begin_code.h"
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. typedef enum
  8. {
  9. SDL_BLENDMODE_NONE = 0x00000000,
  10. SDL_BLENDMODE_BLEND = 0x00000001,
  11. SDL_BLENDMODE_ADD = 0x00000002,
  12. SDL_BLENDMODE_MOD = 0x00000004
  13. } SDL_BlendMode;
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17. #include "close_code.h"
  18. #endif