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
9819f2b7
Commit
9819f2b7
authored
Apr 04, 1999
by
Marcus Meissner
Committed by
Alexandre Julliard
Apr 04, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
EnumCalendarInfoA stub.
parent
7d7fe7c1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
1 deletion
+22
-1
winnls.h
include/winnls.h
+11
-0
ole2nls.c
ole/ole2nls.c
+10
-0
kernel32.spec
relay32/kernel32.spec
+1
-1
No files found.
include/winnls.h
View file @
9819f2b7
...
...
@@ -456,6 +456,17 @@ WCHAR towlower(WCHAR);
#define C3_ALPHA 0x8000
#define C3_NOTAPPLICABLE 0x0000
typedef
DWORD
CALTYPE
;
typedef
DWORD
CALID
;
typedef
BOOL
(
CALLBACK
*
CALINFO_ENUMPROCA
)(
LPSTR
);
typedef
BOOL
(
CALLBACK
*
CALINFO_ENUMPROCW
)(
LPWSTR
);
DECL_WINELIB_TYPE_AW
(
CALINFO_ENUMPROC
);
BOOL
WINAPI
EnumCalendarInfoA
(
CALINFO_ENUMPROCA
lpCalInfoEnumProc
,
LCID
Locale
,
CALID
Calendar
,
CALTYPE
CalType
);
BOOL
WINAPI
EnumCalendarInfoW
(
CALINFO_ENUMPROCW
lpCalInfoEnumProc
,
LCID
Locale
,
CALID
Calendar
,
CALTYPE
CalType
);
#define EnumCalendarInfo WINELIB_NAME_AW(EnumCalendarInfo)
/* FIXME: This does not belong to an interface file */
UINT16
WINAPI
CompareString16
(
DWORD
,
DWORD
,
LPCSTR
,
DWORD
,
LPCSTR
,
DWORD
);
INT16
WINAPI
GetLocaleInfo16
(
LCID
,
LCTYPE
,
LPSTR
,
INT16
);
...
...
ole/ole2nls.c
View file @
9819f2b7
...
...
@@ -3198,3 +3198,13 @@ GetTimeFormatW(LCID locale, /* in */
timestr
,
timelen
);
return
ret
;
}
/******************************************************************************
* EnumCalendarInfoA [KERNEL32.196]
*/
BOOL
WINAPI
EnumCalendarInfoA
(
CALINFO_ENUMPROCA
calinfoproc
,
LCID
locale
,
CALID
calendar
,
CALTYPE
caltype
)
{
FIXME
(
ole
,
"(%p,0x%04lx,0x%08lx,0x%08lx),stub!
\n
"
,
calinfoproc
,
locale
,
calendar
,
caltype
);
return
FALSE
;
}
relay32/kernel32.spec
View file @
9819f2b7
...
...
@@ -211,7 +211,7 @@ init MAIN_KernelInit
193 stub EndUpdateResourceA
194 stub EndUpdateResourceW
195 stdcall EnterCriticalSection(ptr) EnterCriticalSection
196 st
ub
EnumCalendarInfoA
196 st
dcall EnumCalendarInfoA(ptr long long long)
EnumCalendarInfoA
197 stub EnumCalendarInfoW
198 stdcall EnumDateFormatsA(ptr long long) EnumDateFormatsA
199 stdcall EnumDateFormatsW(ptr long long) EnumDateFormatsW
...
...
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