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
2d15dd54
Commit
2d15dd54
authored
Jan 15, 2009
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 15, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Implement GUIDFromStringW.
parent
e6fedf87
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
shell32.spec
dlls/shell32/shell32.spec
+2
-0
shellord.c
dlls/shell32/shellord.c
+12
-0
No files found.
dlls/shell32/shell32.spec
View file @
2d15dd54
...
...
@@ -253,6 +253,8 @@
660 stdcall -noname FileIconInit(long)
680 stdcall -noname IsUserAdmin()
704 stdcall -noname GUIDFromStringW(wstr ptr)
714 stdcall @(ptr) SHELL32_714 # PathIsTemporaryW
730 stdcall -noname RestartDialogEx(long wstr long long)
...
...
dlls/shell32/shellord.c
View file @
2d15dd54
...
...
@@ -33,6 +33,7 @@
#include "winreg.h"
#include "wine/debug.h"
#include "winnls.h"
#include "winternl.h"
#include "shellapi.h"
#include "objbase.h"
...
...
@@ -1528,6 +1529,17 @@ BOOL WINAPI shell32_243(DWORD a, DWORD b)
}
/*************************************************************************
* GUIDFromStringW [SHELL32.704]
*/
BOOL
WINAPI
GUIDFromStringW
(
LPCWSTR
str
,
LPGUID
guid
)
{
UNICODE_STRING
guid_str
;
RtlInitUnicodeString
(
&
guid_str
,
str
);
return
!
RtlGUIDFromString
(
&
guid_str
,
guid
);
}
/*************************************************************************
* @ [SHELL32.714]
*/
DWORD
WINAPI
SHELL32_714
(
LPVOID
x
)
...
...
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