shdocvw: Make adjust_ie_docobj_rect() static.

This commit is contained in:
Francois Gouget 2010-08-26 13:03:00 +02:00 committed by Alexandre Julliard
parent 2dbe80bb7e
commit a62beeeaf7
2 changed files with 1 additions and 2 deletions

View File

@ -60,7 +60,7 @@ HRESULT update_ie_statustext(InternetExplorer* This, LPCWSTR text)
return S_OK;
}
void adjust_ie_docobj_rect(HWND frame, RECT* rc)
static void adjust_ie_docobj_rect(HWND frame, RECT* rc)
{
HWND hwndRebar = GetDlgItem(frame, IDC_BROWSE_REBAR);
HWND hwndStatus = GetDlgItem(frame, IDC_BROWSE_STATUSBAR);

View File

@ -284,7 +284,6 @@ static inline void SHDOCVW_UnlockModule(void) { InterlockedDecrement( &SHDOCVW_r
extern HINSTANCE shdocvw_hinstance;
extern void register_iewindow_class(void);
extern void unregister_iewindow_class(void);
extern void adjust_ie_docobj_rect(HWND, RECT*);
extern HRESULT update_ie_statustext(InternetExplorer*, LPCWSTR);
HRESULT register_class_object(BOOL);