mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 14:15:49 +00:00
Stub and export EnumCalanderInfoExW and QueryWin31IniFilesMappedToRegistry
svn path=/trunk/; revision=18100
This commit is contained in:
parent
cc19214973
commit
d78f9d9f94
3 changed files with 31 additions and 4 deletions
|
@ -181,7 +181,7 @@ EnterCriticalSection@4=NTDLL.RtlEnterCriticalSection
|
||||||
EnumCalendarInfoA@16
|
EnumCalendarInfoA@16
|
||||||
EnumCalendarInfoExA@16
|
EnumCalendarInfoExA@16
|
||||||
EnumCalendarInfoExW@16
|
EnumCalendarInfoExW@16
|
||||||
;EnumCalendarInfoW@16
|
EnumCalendarInfoW@16
|
||||||
EnumDateFormatsA@12
|
EnumDateFormatsA@12
|
||||||
EnumDateFormatsExA@12
|
EnumDateFormatsExA@12
|
||||||
EnumDateFormatsExW@12
|
EnumDateFormatsExW@12
|
||||||
|
@ -696,7 +696,7 @@ QueryPerformanceCounter@4
|
||||||
QueryPerformanceFrequency@4
|
QueryPerformanceFrequency@4
|
||||||
QueueUserAPC@12
|
QueueUserAPC@12
|
||||||
QueueUserWorkItem@12
|
QueueUserWorkItem@12
|
||||||
;QueryWin31IniFilesMappedToRegistry@16
|
QueryWin31IniFilesMappedToRegistry@16
|
||||||
RaiseException@16
|
RaiseException@16
|
||||||
ReadConsoleA@20
|
ReadConsoleA@20
|
||||||
ReadConsoleInputA@16
|
ReadConsoleInputA@16
|
||||||
|
|
|
@ -104,8 +104,20 @@ EnumCalendarInfoExW(
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
BOOL
|
||||||
|
STDCALL
|
||||||
|
EnumCalendarInfoW(
|
||||||
|
CALINFO_ENUMPROCW lpCalInfoEnumProcEx,
|
||||||
|
LCID Locale,
|
||||||
|
CALID Calendar,
|
||||||
|
CALTYPE CalType)
|
||||||
|
{
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @unimplemented
|
||||||
|
|
|
@ -1872,3 +1872,18 @@ CloseProfileUserMapping(VOID)
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
BOOL
|
||||||
|
STDCALL
|
||||||
|
QueryWin31IniFilesMappedToRegistry(DWORD Unknown0,
|
||||||
|
DWORD Unknown1,
|
||||||
|
DWORD Unknown2,
|
||||||
|
DWORD Unknown3)
|
||||||
|
{
|
||||||
|
DPRINT1("QueryWin31IniFilesMappedToRegistry not implemented\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue