ark_2d.h 323 B

12345678910111213141516171819202122232425262728
  1. #ifndef __ARK_2D_H__
  2. #define __ARK_2D_H__
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <gc_hal.h>
  7. #include <gc_hal_raster.h>
  8. struct ark_2d_head{
  9. struct list_head list;
  10. int init;
  11. int user_cnt;
  12. gcoOS g_os;
  13. gcoHAL g_hal;
  14. gco2D g_engine2d;
  15. };
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif