Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
b520cc1a
Commit
b520cc1a
authored
Aug 31, 2010
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 31, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: Make FD31_FreeOfnW() and FD31_MapOfnStructA() static.
parent
f3c092f7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
filedlg31.c
dlls/comdlg32/filedlg31.c
+2
-2
filedlg31.h
dlls/comdlg32/filedlg31.h
+0
-2
No files found.
dlls/comdlg32/filedlg31.c
View file @
b520cc1a
...
...
@@ -738,7 +738,7 @@ static LPWSTR FD31_DupToW(LPCSTR str, DWORD size)
* FD31_MapOfnStructA [internal]
* map a 32 bits Ansi structure to a Unicode one
*/
void
FD31_MapOfnStructA
(
const
OPENFILENAMEA
*
ofnA
,
LPOPENFILENAMEW
ofnW
,
BOOL
open
)
static
void
FD31_MapOfnStructA
(
const
OPENFILENAMEA
*
ofnA
,
LPOPENFILENAMEW
ofnW
,
BOOL
open
)
{
UNICODE_STRING
usBuffer
;
...
...
@@ -796,7 +796,7 @@ void FD31_MapOfnStructA(const OPENFILENAMEA *ofnA, LPOPENFILENAMEW ofnW, BOOL op
* FD31_FreeOfnW [internal]
* Undo all allocations done by FD31_MapOfnStructA
*/
void
FD31_FreeOfnW
(
OPENFILENAMEW
*
ofnW
)
static
void
FD31_FreeOfnW
(
OPENFILENAMEW
*
ofnW
)
{
HeapFree
(
GetProcessHeap
(),
0
,
(
LPWSTR
)
ofnW
->
lpstrFilter
);
HeapFree
(
GetProcessHeap
(),
0
,
ofnW
->
lpstrCustomFilter
);
...
...
dlls/comdlg32/filedlg31.h
View file @
b520cc1a
...
...
@@ -40,8 +40,6 @@ extern BOOL FD32_GetTemplate(PFD31_DATA lfs);
extern
BOOL
FD31_Init
(
void
);
extern
PFD31_DATA
FD31_AllocPrivate
(
LPARAM
lParam
,
UINT
dlgType
,
BOOL
IsUnicode
);
extern
void
FD31_DestroyPrivate
(
PFD31_DATA
lfs
);
extern
void
FD31_MapOfnStructA
(
const
OPENFILENAMEA
*
ofnA
,
LPOPENFILENAMEW
ofnW
,
BOOL
open
);
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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment