refactoring
This commit is contained in:
parent
95afd87656
commit
baaa87b18f
62 changed files with 7231 additions and 6636 deletions
23
inc/config.h
Normal file
23
inc/config.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
#ifndef CONFIG_H
|
||||
#define CONFIG_H
|
||||
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#include <windows.h>
|
||||
|
||||
|
||||
typedef struct cnc_ddraw_config
|
||||
{
|
||||
RECT window_rect;
|
||||
int window_state;
|
||||
char ini_path[MAX_PATH];
|
||||
char process_file_name[96];
|
||||
int save_settings;
|
||||
|
||||
} cnc_ddraw_config;
|
||||
|
||||
extern cnc_ddraw_config g_config;
|
||||
|
||||
void cfg_load();
|
||||
void cfg_save();
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue