Starter project for SDL2.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

20 řádky
342 B

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