diff options
| author | Pietro Gagliardi <[email protected]> | 2014-07-25 16:06:53 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-07-25 16:06:53 -0400 |
| commit | d03b8f4b7ce5cc04753679798e14233135026a25 (patch) | |
| tree | cb711fbc04f1453f9fa211656f4bba7e656eb912 /redo/containers_windows.c | |
| parent | 506ab2058205184913493f568ce1771f7ba3566b (diff) | |
Removed extern from C function definitions in containers_windows.c.
Diffstat (limited to 'redo/containers_windows.c')
| -rw-r--r-- | redo/containers_windows.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/containers_windows.c b/redo/containers_windows.c index 7b4f255..b5f3a97 100644 --- a/redo/containers_windows.c +++ b/redo/containers_windows.c @@ -57,7 +57,7 @@ void tabAppend(HWND hwnd, LPCWSTR name) xpanic("error adding tab to Tab", GetLastError()); } -extern void tabGetContentRect(HWND hwnd, RECT *r) +void tabGetContentRect(HWND hwnd, RECT *r) { /* not &r; already a pointer (thanks MindChild in irc.efnet.net/#winprog for spotting my failure) */ SendMessageW(hwnd, TCM_ADJUSTRECT, FALSE, (LPARAM) r); |
