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
ed0c6746
Commit
ed0c6746
authored
Apr 04, 2015
by
Mark Harmstone
Committed by
Alexandre Julliard
Apr 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Stub out GetFileMUIPath.
parent
5c8aad8d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
3 deletions
+18
-3
api-ms-win-core-localization-l1-2-0.spec
...alization-l1-2-0/api-ms-win-core-localization-l1-2-0.spec
+1
-1
api-ms-win-core-localization-l1-2-1.spec
...alization-l1-2-1/api-ms-win-core-localization-l1-2-1.spec
+1
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
locale.c
dlls/kernel32/locale.c
+15
-0
No files found.
dlls/api-ms-win-core-localization-l1-2-0/api-ms-win-core-localization-l1-2-0.spec
View file @
ed0c6746
...
...
@@ -12,7 +12,7 @@
@ stdcall GetCalendarInfoEx(wstr long ptr long ptr long ptr) kernel32.GetCalendarInfoEx
@ stdcall GetCalendarInfoW(long long long ptr long ptr) kernel32.GetCalendarInfoW
@ stub GetFileMUIInfo
@ st
ub
GetFileMUIPath
@ st
dcall GetFileMUIPath(long wstr wstr ptr ptr ptr ptr) kernel32.
GetFileMUIPath
@ stdcall GetGeoInfoW(long long ptr long long) kernel32.GetGeoInfoW
@ stdcall GetLocaleInfoA(long long ptr long) kernel32.GetLocaleInfoA
@ stdcall GetLocaleInfoEx(wstr long ptr long) kernel32.GetLocaleInfoEx
...
...
dlls/api-ms-win-core-localization-l1-2-1/api-ms-win-core-localization-l1-2-1.spec
View file @
ed0c6746
...
...
@@ -13,7 +13,7 @@
@ stdcall GetCalendarInfoEx(wstr long ptr long ptr long ptr) kernel32.GetCalendarInfoEx
@ stdcall GetCalendarInfoW(long long long ptr long ptr) kernel32.GetCalendarInfoW
@ stub GetFileMUIInfo
@ st
ub
GetFileMUIPath
@ st
dcall GetFileMUIPath(long wstr wstr ptr ptr ptr ptr) kernel32.
GetFileMUIPath
@ stdcall GetGeoInfoW(long long ptr long long) kernel32.GetGeoInfoW
@ stdcall GetLocaleInfoA(long long ptr long) kernel32.GetLocaleInfoA
@ stdcall GetLocaleInfoEx(wstr long ptr long) kernel32.GetLocaleInfoEx
...
...
dlls/kernel32/kernel32.spec
View file @
ed0c6746
...
...
@@ -677,7 +677,7 @@
@ stdcall GetFileInformationByHandle(long ptr)
@ stdcall GetFileInformationByHandleEx(long long ptr long)
# @ stub GetFileMUIInfo
# @ stub GetFileMUIPath
@ stdcall GetFileMUIPath(long wstr wstr ptr ptr ptr ptr)
@ stdcall GetFileSize(long ptr)
@ stdcall GetFileSizeEx(long ptr)
@ stdcall GetFileTime(long ptr ptr ptr)
...
...
dlls/kernel32/locale.c
View file @
ed0c6746
...
...
@@ -5300,3 +5300,18 @@ BOOL WINAPI GetUserPreferredUILanguages(DWORD flags, PULONG numlangs, PZZWSTR la
FIXME
(
"stub: %u %p %p %p
\n
"
,
flags
,
numlangs
,
langbuffer
,
bufferlen
);
return
FALSE
;
}
/******************************************************************************
* GetFileMUIPath (KERNEL32.@)
*/
BOOL
WINAPI
GetFileMUIPath
(
DWORD
flags
,
PCWSTR
filepath
,
PWSTR
language
,
PULONG
languagelen
,
PWSTR
muipath
,
PULONG
muipathlen
,
PULONGLONG
enumerator
)
{
FIXME
(
"stub: 0x%x, %s, %s, %p, %p, %p, %p
\n
"
,
flags
,
debugstr_w
(
filepath
),
debugstr_w
(
language
),
languagelen
,
muipath
,
muipathlen
,
enumerator
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
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