Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
f4a5ba1f
Commit
f4a5ba1f
authored
Jan 03, 2005
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 03, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub implementations for EnumDateFormatsEx{A,W}.
parent
e121d509
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
kernel32.spec
dlls/kernel/kernel32.spec
+2
-2
lcformat.c
dlls/kernel/lcformat.c
+20
-0
No files found.
dlls/kernel/kernel32.spec
View file @
f4a5ba1f
...
...
@@ -251,8 +251,8 @@
@ stdcall EnumCalendarInfoExW(ptr long long long)
@ stdcall EnumDateFormatsA(ptr long long)
@ stdcall EnumDateFormatsW(ptr long long)
@ st
ub EnumDateFormatsExA
@ st
ub EnumDateFormatsExW
@ st
dcall EnumDateFormatsExA(ptr long long)
@ st
dcall EnumDateFormatsExW(ptr long long)
@ stdcall EnumLanguageGroupLocalesA(ptr long long ptr)
@ stdcall EnumLanguageGroupLocalesW(ptr long long ptr)
@ stdcall EnumResourceLanguagesA(long str str ptr long)
...
...
dlls/kernel/lcformat.c
View file @
f4a5ba1f
...
...
@@ -1581,6 +1581,26 @@ GetCurrencyFormatW_Error:
*/
/**************************************************************************
* EnumDateFormatsExA (KERNEL32.@)
*/
BOOL
WINAPI
EnumDateFormatsExA
(
DATEFMT_ENUMPROCEXA
lpDateFmtEnumProc
,
LCID
Locale
,
DWORD
dwFlags
)
{
FIXME
(
"(%p, %ld, %ld): stub
\n
"
,
lpDateFmtEnumProc
,
Locale
,
dwFlags
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/**************************************************************************
* EnumDateFormatsExW (KERNEL32.@)
*/
BOOL
WINAPI
EnumDateFormatsExW
(
DATEFMT_ENUMPROCEXW
lpDateFmtEnumProc
,
LCID
Locale
,
DWORD
dwFlags
)
{
FIXME
(
"(%p, %ld, %ld): stub
\n
"
,
lpDateFmtEnumProc
,
Locale
,
dwFlags
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/**************************************************************************
* EnumDateFormatsA (KERNEL32.@)
*/
BOOL
WINAPI
EnumDateFormatsA
(
DATEFMT_ENUMPROCA
lpDateFmtEnumProc
,
LCID
Locale
,
DWORD
dwFlags
)
...
...
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