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
4ce3dc20
Commit
4ce3dc20
authored
Aug 29, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved the implementation of a couple of system.drv entry points to
system.c.
parent
33b2c1fd
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
6 deletions
+20
-6
global16.c
dlls/kernel/global16.c
+0
-1
kernel_main.c
dlls/kernel/kernel_main.c
+0
-1
system.c
dlls/kernel/system.c
+18
-2
system.drv.spec
dlls/kernel/system.drv.spec
+2
-2
No files found.
dlls/kernel/global16.c
View file @
4ce3dc20
...
...
@@ -1068,7 +1068,6 @@ DWORD WINAPI GetFreeMemInfo16(void)
/***********************************************************************
* A20Proc (KERNEL.165)
* A20_Proc (SYSTEM.20)
*/
void
WINAPI
A20Proc16
(
WORD
unused
)
{
...
...
dlls/kernel/kernel_main.c
View file @
4ce3dc20
...
...
@@ -220,7 +220,6 @@ INT WINAPI MulDiv( INT nMultiplicand, INT nMultiplier, INT nDivisor)
/***********************************************************************
* GetSystemMSecCount (SYSTEM.6)
* GetTickCount (KERNEL32.@)
*
* Get the number of milliseconds the system has been running.
...
...
dlls/kernel/system.c
View file @
4ce3dc20
...
...
@@ -29,8 +29,6 @@
#include "wine/winuser16.h"
#include "wownt32.h"
#include "winternl.h"
#include "kernel_private.h"
#include "kernel16_private.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
system
);
...
...
@@ -227,6 +225,15 @@ void WINAPI DisableSystemTimers16(void)
/***********************************************************************
* GetSystemMSecCount (SYSTEM.6)
*/
DWORD
WINAPI
GetSystemMSecCount16
(
void
)
{
return
GetTickCount
();
}
/***********************************************************************
* Get80x87SaveSize (SYSTEM.7)
*/
WORD
WINAPI
Get80x87SaveSize16
(
void
)
...
...
@@ -255,3 +262,12 @@ void WINAPI Restore80x87State16( const char *ptr )
__asm__
(
".byte 0x66; frstor %0"
:
:
"m"
(
ptr
)
);
#endif
}
/***********************************************************************
* A20_Proc (SYSTEM.20)
*/
void
WINAPI
A20_Proc16
(
WORD
unused
)
{
/* this is also a NOP in Windows */
}
dlls/kernel/system.drv.spec
View file @
4ce3dc20
...
...
@@ -3,10 +3,10 @@
3 pascal -ret16 KillSystemTimer(word) SYSTEM_KillSystemTimer
4 pascal -ret16 EnableSystemTimers() EnableSystemTimers16
5 pascal -ret16 DisableSystemTimers() DisableSystemTimers16
6 pascal
GetSystemMSecCount() GetTickCount
6 pascal
GetSystemMSecCount() GetSystemMSecCount16
7 pascal -ret16 Get80x87SaveSize() Get80x87SaveSize16
8 pascal -ret16 Save80x87State(ptr) Save80x87State16
9 pascal -ret16 Restore80x87State(ptr) Restore80x87State16
13 stub INQUIRELONGINTS # W1.1, W2.0
#14 stub ordinal only W1.1
20 pascal -ret16 A20_Proc(word) A20Proc16
20 pascal -ret16 A20_Proc(word) A20
_
Proc16
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