Rev 83 | Rev 119 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 83 | Rev 116 | ||
|---|---|---|---|
| Line 9... | Line 9... | ||
| 9 | #include <windowsx.h> |
9 | #include <windowsx.h> |
| 10 | #include <wininet.h> |
10 | #include <wininet.h> |
| 11 | #include <commctrl.h> |
11 | #include <commctrl.h> |
| 12 | #include <richedit.h> |
12 | #include <richedit.h> |
| 13 | #include <stdio.h> |
13 | #include <stdio.h> |
| - | 14 | #include <stdint.h> |
|
| 14 | #include <io.h> |
15 | #include <io.h> |
| 15 | #include <malloc.h> |
16 | #include <malloc.h> |
| 16 | #include <math.h> |
17 | #include <math.h> |
| 17 | #include <time.h> |
18 | #include <time.h> |
| 18 | #include <share.h> |
19 | #include <share.h> |
| Line 44... | Line 45... | ||
| 44 | HWND hWndParent; // message box parent window |
45 | HWND hWndParent; // message box parent window |
| 45 | wchar_t title[128]; // message box title |
46 | wchar_t title[128]; // message box title |
| 46 | wchar_t text[4096]; // message box text |
47 | wchar_t text[4096]; // message box text |
| 47 | int flags; // message box flags (such as MB_OK, MB_ICONEXCLAMATION, etc...) |
48 | int flags; // message box flags (such as MB_OK, MB_ICONEXCLAMATION, etc...) |
| 48 | } messagebox_t; |
49 | } messagebox_t; |
| - | 50 | ||
| - | 51 | ||
| - | 52 | // resizeable buffer structure type definition |
|
| - | 53 | typedef struct buffer_s |
|
| - | 54 | { |
|
| - | 55 | char *data; // buffer data, mallocated |
|
| - | 56 | unsigned long size; // buffer size in bytes |
|
| - | 57 | } buffer_t; |
|
| 49 | 58 | ||
| 50 | 59 | ||
| 51 | // part color theme data definition |
60 | // part color theme data definition |
| 52 | typedef struct partcolor_s |
61 | typedef struct partcolor_s |
| 53 | { |
62 | { |