mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-16 14:28:52 +01:00
24 lines
341 B
C
24 lines
341 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
|
|
|
|
typedef struct CNCDDRAWCONFIG
|
|
{
|
|
RECT window_rect;
|
|
int window_state;
|
|
char ini_path[MAX_PATH];
|
|
char process_file_name[96];
|
|
int save_settings;
|
|
|
|
} CNCDDRAWCONFIG;
|
|
|
|
extern CNCDDRAWCONFIG g_config;
|
|
|
|
void cfg_load();
|
|
void cfg_save();
|
|
|
|
#endif
|