comdlg32: Declare some items static.
This commit is contained in:
parent
e946ce6b38
commit
6bb00a3c0e
|
@ -38,8 +38,8 @@ HINSTANCE COMDLG32_hInstance = 0;
|
|||
|
||||
static DWORD COMDLG32_TlsIndex = TLS_OUT_OF_INDEXES;
|
||||
|
||||
HINSTANCE SHELL32_hInstance = 0;
|
||||
HINSTANCE SHFOLDER_hInstance = 0;
|
||||
static HINSTANCE SHELL32_hInstance;
|
||||
static HINSTANCE SHFOLDER_hInstance;
|
||||
|
||||
/* ITEMIDLIST */
|
||||
LPITEMIDLIST (WINAPI *COMDLG32_PIDL_ILClone) (LPCITEMIDLIST);
|
||||
|
|
|
@ -227,7 +227,7 @@ static LPITEMIDLIST GetPidlFromName(IShellFolder *psf,LPWSTR lpcstrFileName);
|
|||
static void *MemAlloc(UINT size);
|
||||
static void MemFree(void *mem);
|
||||
|
||||
INT_PTR CALLBACK FileOpenDlgProc95(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||
static INT_PTR CALLBACK FileOpenDlgProc95(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||
LRESULT SendCustomDlgNotificationMessage(HWND hwndParentDlg, UINT uCode);
|
||||
static INT_PTR FILEDLG95_HandleCustomDialogMessages(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||
static BOOL FILEDLG95_OnOpenMultipleFiles(HWND hwnd, LPWSTR lpstrFileList, UINT nFileCount, UINT sizeUsed);
|
||||
|
|
|
@ -47,8 +47,8 @@ static const WCHAR chooseFontW[] = {'C','H','O','O','S','E','_','F','O','N','T',
|
|||
static HIMAGELIST himlTT = 0;
|
||||
#define TTBITMAP_XSIZE 20 /* x-size of the bitmaps */
|
||||
|
||||
INT_PTR CALLBACK FormatCharDlgProcA(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||
INT_PTR CALLBACK FormatCharDlgProcW(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||
static INT_PTR CALLBACK FormatCharDlgProcA(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||
static INT_PTR CALLBACK FormatCharDlgProcW(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||
|
||||
/* There is a table here of all charsets, and the sample text for each.
|
||||
* There is a second table that translates a charset into an index into
|
||||
|
|
Loading…
Reference in New Issue