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
0df25df8
Commit
0df25df8
authored
Jan 18, 2017
by
Austin English
Committed by
Alexandre Julliard
Jan 25, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add BaseFlushAppcompatCache stub.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ca4227bd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
3 deletions
+13
-3
api-ms-win-core-appcompat-l1-1-1.spec
...re-appcompat-l1-1-1/api-ms-win-core-appcompat-l1-1-1.spec
+1
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+2
-2
process.c
dlls/kernel32/process.c
+10
-0
No files found.
dlls/api-ms-win-core-appcompat-l1-1-1/api-ms-win-core-appcompat-l1-1-1.spec
View file @
0df25df8
...
...
@@ -2,7 +2,7 @@
@ stub BaseCheckAppcompatCacheEx
@ stub BaseCleanupAppcompatCacheSupport
@ stub BaseDumpAppcompatCache
@ st
ub
BaseFlushAppcompatCache
@ st
dcall BaseFlushAppcompatCache() kernel32.
BaseFlushAppcompatCache
@ stub BaseFreeAppCompatDataForProcess
@ stub BaseInitAppcompatCacheSupport
@ stub BaseIsAppcompatInfrastructureDisabled
...
...
dlls/kernel32/kernel32.spec
View file @
0df25df8
...
...
@@ -167,11 +167,11 @@
@ stub BaseCheckAppcompatCache
# @ stub BaseCheckAppcompatCacheEx
# @ stub BaseCheckRunApp
@ stub BaseCleanupAppcompatCache
@ stub BaseCleanupAppcompatCache
@ stub BaseCleanupAppcompatCacheSupport
# @ stub BaseDllReadWriteIniFile
@ stub BaseDumpAppcompatCache
@ st
ub BaseFlushAppcompatCache
@ st
dcall BaseFlushAppcompatCache()
# @ stub BaseFormatObjectAttributes
# @ stub BaseFormatTimeOut
# @ stub BaseGenerateAppCompatData
...
...
dlls/kernel32/process.c
View file @
0df25df8
...
...
@@ -4207,3 +4207,13 @@ void WINAPI DeleteProcThreadAttributeList(struct _PROC_THREAD_ATTRIBUTE_LIST *li
{
return
;
}
/**********************************************************************
* BaseFlushAppcompatCache (KERNEL32.@)
*/
BOOL
WINAPI
BaseFlushAppcompatCache
(
void
)
{
FIXME
(
": stub
\n
"
);
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