comdlg32: Remove inappropriate const qualifier.
This commit is contained in:
parent
03fc0989a3
commit
2bd62004cf
|
@ -754,7 +754,7 @@ void FD31_MapOfnStructA(const OPENFILENAMEA *ofnA, LPOPENFILENAMEW ofnW, BOOL op
|
|||
* FD31_FreeOfnW [internal]
|
||||
* Undo all allocations done by FD31_MapOfnStructA
|
||||
*/
|
||||
void FD31_FreeOfnW(const OPENFILENAMEW *ofnW)
|
||||
void FD31_FreeOfnW(OPENFILENAMEW *ofnW)
|
||||
{
|
||||
HeapFree(GetProcessHeap(), 0, (LPWSTR) ofnW->lpstrFilter);
|
||||
HeapFree(GetProcessHeap(), 0, ofnW->lpstrCustomFilter);
|
||||
|
|
|
@ -55,7 +55,7 @@ extern PFD31_DATA FD31_AllocPrivate(LPARAM lParam, UINT dlgType,
|
|||
PFD31_CALLBACKS callbacks, DWORD data);
|
||||
extern void FD31_DestroyPrivate(PFD31_DATA lfs);
|
||||
extern void FD31_MapOfnStructA(const OPENFILENAMEA *ofnA, LPOPENFILENAMEW ofnW, BOOL open);
|
||||
extern void FD31_FreeOfnW(const OPENFILENAMEW *ofnW);
|
||||
extern void FD31_FreeOfnW(OPENFILENAMEW *ofnW);
|
||||
extern BOOL FD31_CallWindowProc(const FD31_DATA *lfs, UINT wMsg, WPARAM wParam,
|
||||
LPARAM lParam);
|
||||
extern LONG FD31_WMInitDialog(HWND hWnd, WPARAM wParam, LPARAM lParam);
|
||||
|
|
Loading…
Reference in New Issue