Starter project for SDL2.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

19 行
302 B

  1. #ifndef IZ_VIDEO_H
  2. #define IZ_VIDEO_H
  3. #include <stdio.h>
  4. #include <minIni.h>
  5. #include "../IZ_config.h"
  6. typedef struct {
  7. uint16_t width;
  8. uint16_t height;
  9. uint8_t max_fps;
  10. } IZ_VideoConfig;
  11. void IZ_SaveVideoConfig(IZ_VideoConfig* config);
  12. void IZ_LoadVideoConfig(IZ_VideoConfig* config);
  13. #endif