Commit 36e195a1 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

shell32: Remove WINAPI/CALLBACK on static functions where not needed.

parent 66063ae4
...@@ -985,7 +985,7 @@ LPITEMIDLIST WINAPI ILCreateFromPathAW (LPCVOID path) ...@@ -985,7 +985,7 @@ LPITEMIDLIST WINAPI ILCreateFromPathAW (LPCVOID path)
* is used to avoid having to verify the current path element on disk, so * is used to avoid having to verify the current path element on disk, so
* that creating an ItemIDList from a nonexistent path still can work. * that creating an ItemIDList from a nonexistent path still can work.
*/ */
static HRESULT WINAPI _ILParsePathW(LPCWSTR path, LPWIN32_FIND_DATAW lpFindFile, static HRESULT _ILParsePathW(LPCWSTR path, LPWIN32_FIND_DATAW lpFindFile,
BOOL bBindCtx, LPITEMIDLIST *ppidl, LPDWORD prgfInOut) BOOL bBindCtx, LPITEMIDLIST *ppidl, LPDWORD prgfInOut)
{ {
LPSHELLFOLDER pSF = NULL; LPSHELLFOLDER pSF = NULL;
......
...@@ -112,7 +112,7 @@ static void confirm_msg_move_button(HWND hDlg, INT iId, INT *xPos, INT yOffset, ...@@ -112,7 +112,7 @@ static void confirm_msg_move_button(HWND hDlg, INT iId, INT *xPos, INT yOffset,
/* Note: we paint the text manually and don't use the static control to make /* Note: we paint the text manually and don't use the static control to make
* sure the text has the same height as the one computed in WM_INITDIALOG * sure the text has the same height as the one computed in WM_INITDIALOG
*/ */
static INT_PTR CALLBACK ConfirmMsgBox_Paint(HWND hDlg) static INT_PTR ConfirmMsgBox_Paint(HWND hDlg)
{ {
PAINTSTRUCT ps; PAINTSTRUCT ps;
HFONT hOldFont; HFONT hOldFont;
...@@ -132,7 +132,7 @@ static INT_PTR CALLBACK ConfirmMsgBox_Paint(HWND hDlg) ...@@ -132,7 +132,7 @@ static INT_PTR CALLBACK ConfirmMsgBox_Paint(HWND hDlg)
return TRUE; return TRUE;
} }
static INT_PTR CALLBACK ConfirmMsgBox_Init(HWND hDlg, LPARAM lParam) static INT_PTR ConfirmMsgBox_Init(HWND hDlg, LPARAM lParam)
{ {
struct confirm_msg_info *info = (struct confirm_msg_info *)lParam; struct confirm_msg_info *info = (struct confirm_msg_info *)lParam;
INT xPos, yOffset; INT xPos, yOffset;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment