summaryrefslogtreecommitdiff
path: root/redo/winapi_windows.h
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-04 19:46:49 -0400
committerPietro Gagliardi <[email protected]>2014-08-04 19:46:49 -0400
commit9ed4ec52597e03b080331efeac526322b669e565 (patch)
tree3fbd62fc272409d26ec10b56a7d546dbb9e5bc98 /redo/winapi_windows.h
parent88c01bf69532243f432e03121b922a94d19b0ae1 (diff)
Split layout and Window on Windows to use two separate window classes. This is the first half of the two-part migration of the Windows backend to use container.
Diffstat (limited to 'redo/winapi_windows.h')
-rw-r--r--redo/winapi_windows.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/redo/winapi_windows.h b/redo/winapi_windows.h
index 285bbcd..db90e97 100644
--- a/redo/winapi_windows.h
+++ b/redo/winapi_windows.h
@@ -74,7 +74,7 @@ extern LONG controlTextLength(HWND, LPWSTR);
/* window_windows.c */
extern DWORD makeWindowWindowClass(char **);
-extern HWND newWindow(LPWSTR, int, int, BOOL, void *);
+extern HWND newWindow(LPWSTR, int, int, void *);
extern void windowClose(HWND);
/* common_windows.c */
@@ -98,4 +98,8 @@ extern void tableAppendColumn(HWND, int, LPWSTR);
extern void tableUpdate(HWND, int);
extern void tableAddExtendedStyles(HWND, LPARAM);
+/* container_windows.c */
+extern DWORD makeContainerWindowClass(char **);
+extern HWND newContainer(void *);
+
#endif