Removed extern from C function definitions in containers_windows.c.

This commit is contained in:
Pietro Gagliardi 2014-07-25 16:06:53 -04:00
parent 506ab20582
commit d03b8f4b7c
1 changed files with 1 additions and 1 deletions

View File

@ -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);