annotate src/include/config.h @ 10:42ac054c0231
*: huge refactoring
dirtools now uses wchar (wayyy overdue)
the timer doesn't have a stupid design anymore
we don't use windows.h at all now
...
author |
Paper <paper@paper.us.eu.org> |
date |
Sun, 11 Feb 2024 19:43:31 -0500 |
parents |
59bf702b2b21 |
children |
|
rev |
line source |
0
|
1 #ifndef __config_h
|
|
2 #define __config_h
|
10
|
3
|
|
4 #include <windef.h>
|
|
5
|
4
|
6 struct config {
|
0
|
7 int display_title;
|
|
8 int show_elapsed_time;
|
|
9 };
|
|
10
|
4
|
11 int cfg_load(struct config* config);
|
|
12 int cfg_save(struct config config);
|
1
|
13 BOOL CALLBACK cfg_win_proc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
10
|
14 #endif
|