diff options
| author | Pietro Gagliardi <[email protected]> | 2014-07-18 00:22:21 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-07-18 00:22:21 -0400 |
| commit | d2f09a02225281fbd30fe068f228ca0f3fd26471 (patch) | |
| tree | fe0148572c6336dd74b2113b3a4fcdc34b3fe4ae /redo/comctl32_windows.c | |
| parent | 7c6fa3b2fd773a31d4c0f8899b96c1f25a669ec1 (diff) | |
Fixed all the remaining compiler errors. C conversion works!
Diffstat (limited to 'redo/comctl32_windows.c')
| -rw-r--r-- | redo/comctl32_windows.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/redo/comctl32_windows.c b/redo/comctl32_windows.c index a6ffaf1..ede4c0c 100644 --- a/redo/comctl32_windows.c +++ b/redo/comctl32_windows.c @@ -5,6 +5,11 @@ static ULONG_PTR comctlManifestCookie; static HMODULE comctl32; +/* TODO do any of these take WINAPI? */ +BOOL (*WINAPI fv_SetWindowSubclass)(HWND, SUBCLASSPROC, UINT_PTR, DWORD_PTR); +BOOL (*WINAPI fv_RemoveWindowSubclass)(HWND, SUBCLASSPROC, UINT_PTR); +LRESULT (*WINAPI fv_DefSubclassProc)(HWND, UINT, WPARAM, LPARAM); + DWORD initCommonControls(LPCWSTR manifest, char **errmsg) { ACTCTX actctx; |
