annotate src/include/config.h @ 2:712c7fd6702a
Remove a LOT of unneeded stuff
author |
Paper <mrpapersonic@gmail.com> |
date |
Sun, 07 Aug 2022 10:41:55 -0400 |
parents |
7abb5d8b20ea |
children |
59bf702b2b21 |
rev |
line source |
0
|
1 #ifndef __config_h
|
|
2 #define __config_h
|
1
|
3 #ifndef WIN32_LEAN_AND_MEAN
|
|
4 # define WIN32_LEAN_AND_MEAN
|
|
5 #endif
|
|
6 #include <windows.h>
|
0
|
7 struct config_t {
|
|
8 int display_title;
|
|
9 int show_elapsed_time;
|
|
10 };
|
|
11
|
|
12 int cfg_load(struct config_t* config);
|
|
13 int cfg_save(struct config_t config);
|
1
|
14 BOOL CALLBACK cfg_win_proc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
0
|
15 #endif |