1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-22 16:46:16 +01:00
cnc-ddraw/inc/config.h

24 lines
341 B
C
Raw Normal View History

2020-10-13 09:20:52 +02:00
#ifndef CONFIG_H
#define CONFIG_H
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
2021-06-11 20:30:43 +02:00
typedef struct CNCDDRAWCONFIG
2020-10-13 09:20:52 +02:00
{
RECT window_rect;
int window_state;
char ini_path[MAX_PATH];
char process_file_name[96];
int save_settings;
2021-06-11 20:30:43 +02:00
} CNCDDRAWCONFIG;
2020-10-13 09:20:52 +02:00
2021-06-11 20:30:43 +02:00
extern CNCDDRAWCONFIG g_config;
2020-10-13 09:20:52 +02:00
void cfg_load();
void cfg_save();
#endif