kernel32: Add BaseFlushAppcompatCache stub.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
ca4227bdf4
commit
0df25df828
|
@ -2,7 +2,7 @@
|
||||||
@ stub BaseCheckAppcompatCacheEx
|
@ stub BaseCheckAppcompatCacheEx
|
||||||
@ stub BaseCleanupAppcompatCacheSupport
|
@ stub BaseCleanupAppcompatCacheSupport
|
||||||
@ stub BaseDumpAppcompatCache
|
@ stub BaseDumpAppcompatCache
|
||||||
@ stub BaseFlushAppcompatCache
|
@ stdcall BaseFlushAppcompatCache() kernel32.BaseFlushAppcompatCache
|
||||||
@ stub BaseFreeAppCompatDataForProcess
|
@ stub BaseFreeAppCompatDataForProcess
|
||||||
@ stub BaseInitAppcompatCacheSupport
|
@ stub BaseInitAppcompatCacheSupport
|
||||||
@ stub BaseIsAppcompatInfrastructureDisabled
|
@ stub BaseIsAppcompatInfrastructureDisabled
|
||||||
|
|
|
@ -167,11 +167,11 @@
|
||||||
@ stub BaseCheckAppcompatCache
|
@ stub BaseCheckAppcompatCache
|
||||||
# @ stub BaseCheckAppcompatCacheEx
|
# @ stub BaseCheckAppcompatCacheEx
|
||||||
# @ stub BaseCheckRunApp
|
# @ stub BaseCheckRunApp
|
||||||
@ stub BaseCleanupAppcompatCache
|
@ stub BaseCleanupAppcompatCache
|
||||||
@ stub BaseCleanupAppcompatCacheSupport
|
@ stub BaseCleanupAppcompatCacheSupport
|
||||||
# @ stub BaseDllReadWriteIniFile
|
# @ stub BaseDllReadWriteIniFile
|
||||||
@ stub BaseDumpAppcompatCache
|
@ stub BaseDumpAppcompatCache
|
||||||
@ stub BaseFlushAppcompatCache
|
@ stdcall BaseFlushAppcompatCache()
|
||||||
# @ stub BaseFormatObjectAttributes
|
# @ stub BaseFormatObjectAttributes
|
||||||
# @ stub BaseFormatTimeOut
|
# @ stub BaseFormatTimeOut
|
||||||
# @ stub BaseGenerateAppCompatData
|
# @ stub BaseGenerateAppCompatData
|
||||||
|
|
|
@ -4207,3 +4207,13 @@ void WINAPI DeleteProcThreadAttributeList(struct _PROC_THREAD_ATTRIBUTE_LIST *li
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**********************************************************************
|
||||||
|
* BaseFlushAppcompatCache (KERNEL32.@)
|
||||||
|
*/
|
||||||
|
BOOL WINAPI BaseFlushAppcompatCache(void)
|
||||||
|
{
|
||||||
|
FIXME(": stub\n");
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue