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
f8142d3f
Commit
f8142d3f
authored
Jul 17, 2001
by
Francois Gouget
Committed by
Alexandre Julliard
Jul 17, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added missing CommandLineToArgvW prototype.
parent
5aa9754c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
shell32_main.c
dlls/shell32/shell32_main.c
+3
-2
shellapi.h
include/shellapi.h
+1
-0
No files found.
dlls/shell32/shell32_main.c
View file @
f8142d3f
...
...
@@ -33,13 +33,14 @@ DEFAULT_DEBUG_CHANNEL(shell);
/*************************************************************************
* CommandLineToArgvW [SHELL32.@]
*/
LPWSTR
*
WINAPI
CommandLineToArgvW
(
LP
WSTR
cmdline
,
LPDWORD
numargs
)
LPWSTR
*
WINAPI
CommandLineToArgvW
(
LP
CWSTR
lpCmdline
,
int
*
numargs
)
{
LPWSTR
*
argv
,
s
,
t
;
LPWSTR
cmdline
;
int
i
;
TRACE
(
"
\n
"
);
/* to get writeable copy */
cmdline
=
HEAP_strdupW
(
GetProcessHeap
(),
0
,
c
mdline
);
cmdline
=
HEAP_strdupW
(
GetProcessHeap
(),
0
,
lpC
mdline
);
s
=
cmdline
;
i
=
0
;
while
(
*
s
)
{
/* space */
...
...
include/shellapi.h
View file @
f8142d3f
...
...
@@ -245,6 +245,7 @@ BOOL WINAPI Shell_NotifyIconW(DWORD dwMessage, PNOTIFYICONDATAW lpData);
* Misc
*/
LPWSTR
*
WINAPI
CommandLineToArgvW
(
LPCWSTR
,
int
*
);
HICON
WINAPI
ExtractIconA
(
HINSTANCE
,
LPCSTR
,
UINT
);
HICON
WINAPI
ExtractIconW
(
HINSTANCE
,
LPCWSTR
,
UINT
);
#define ExtractIcon WINELIB_NAME_AW(ExtractIcon)
...
...
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