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
218faf39
Commit
218faf39
authored
May 11, 2002
by
Eric Pouech
Committed by
Alexandre Julliard
May 11, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed FlushInstructionCache prototype.
parent
47205b82
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
winbase.h
include/winbase.h
+1
-0
newfns.c
win32/newfns.c
+5
-4
No files found.
include/winbase.h
View file @
218faf39
...
@@ -1491,6 +1491,7 @@ BOOL WINAPI FindNextFileW(HANDLE,LPWIN32_FIND_DATAW);
...
@@ -1491,6 +1491,7 @@ BOOL WINAPI FindNextFileW(HANDLE,LPWIN32_FIND_DATAW);
HRSRC
WINAPI
FindResourceA
(
HMODULE
,
LPCSTR
,
LPCSTR
);
HRSRC
WINAPI
FindResourceA
(
HMODULE
,
LPCSTR
,
LPCSTR
);
HRSRC
WINAPI
FindResourceW
(
HMODULE
,
LPCWSTR
,
LPCWSTR
);
HRSRC
WINAPI
FindResourceW
(
HMODULE
,
LPCWSTR
,
LPCWSTR
);
#define FindResource WINELIB_NAME_AW(FindResource)
#define FindResource WINELIB_NAME_AW(FindResource)
BOOL
WINAPI
FlushInstructionCache
(
HANDLE
,
LPCVOID
,
DWORD
);
BOOL
WINAPI
FreeLibrary
(
HMODULE
);
BOOL
WINAPI
FreeLibrary
(
HMODULE
);
#define FreeModule(handle) FreeLibrary(handle)
#define FreeModule(handle) FreeLibrary(handle)
#define FreeProcInstance(proc)
/*nothing*/
#define FreeProcInstance(proc)
/*nothing*/
...
...
win32/newfns.c
View file @
218faf39
...
@@ -149,10 +149,11 @@ BOOL WINAPI QueryPerformanceFrequency(PLARGE_INTEGER frequency)
...
@@ -149,10 +149,11 @@ BOOL WINAPI QueryPerformanceFrequency(PLARGE_INTEGER frequency)
/****************************************************************************
/****************************************************************************
* FlushInstructionCache (KERNEL32.@)
* FlushInstructionCache (KERNEL32.@)
*/
*/
BOOL
WINAPI
FlushInstructionCache
(
DWORD
x
,
DWORD
y
,
DWORD
z
)
{
BOOL
WINAPI
FlushInstructionCache
(
HANDLE
hProcess
,
LPCVOID
lpBaseAddress
,
DWORD
dwSize
)
if
(
GetVersion
()
&
0x80000000
)
return
TRUE
;
/* not NT, always TRUE */
{
FIXME_
(
debug
)(
"(0x%08lx,0x%08lx,0x%08lx): stub
\n
"
,
x
,
y
,
z
);
if
(
GetVersion
()
&
0x80000000
)
return
TRUE
;
/* not NT, always TRUE */
return
TRUE
;
FIXME_
(
debug
)(
"(0x%08lx,%p,0x%08lx): stub
\n
"
,(
DWORD
)
hProcess
,
lpBaseAddress
,
dwSize
);
return
TRUE
;
}
}
/***********************************************************************
/***********************************************************************
...
...
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