summaryrefslogtreecommitdiff
path: root/redo/winapi_windows.h
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-05 12:05:43 -0400
committerPietro Gagliardi <[email protected]>2014-08-05 12:05:43 -0400
commitbccfde2c34c64dd2b13b426875113bd91e6c3940 (patch)
treeb82eb79e960b2d167df02dc4dfd0a7f4f9b57b4a /redo/winapi_windows.h
parentc1055ae278018d8a82950b89f6d37ffbae77719e (diff)
Started re-adding Area to the Windows backend: ported the existing code to C.
Diffstat (limited to 'redo/winapi_windows.h')
-rw-r--r--redo/winapi_windows.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/redo/winapi_windows.h b/redo/winapi_windows.h
index 27e92cc..4b88db2 100644
--- a/redo/winapi_windows.h
+++ b/redo/winapi_windows.h
@@ -26,6 +26,8 @@ enum {
msgRequest = WM_APP + 1, /* + 1 just to be safe */
msgCOMMAND, /* WM_COMMAND proxy; see forwardCommand() in controls_windows.go */
msgNOTIFY, /* WM_NOTIFY proxy */
+ msgAreaSizeChanged,
+ msgAreaRepaintAll,
};
/* uitask_windows.c */
@@ -99,4 +101,9 @@ extern void tableAddExtendedStyles(HWND, LPARAM);
extern DWORD makeContainerWindowClass(char **);
extern HWND newContainer(void *);
+/* area_window.c */
+extern LPWSTR areaWindowClass;
+extern void repaintArea(HWND);
+extern DWORD makeAreaWindowClass(char **);
+
#endif