Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
ff9c44f3
Commit
ff9c44f3
authored
Jun 27, 1999
by
Ulrich Weigand
Committed by
Alexandre Julliard
Jun 27, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bugfix: missing WINAPIs added.
parent
a8c54fb8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
vxd.c
msdos/vxd.c
+10
-10
No files found.
msdos/vxd.c
View file @
ff9c44f3
...
...
@@ -40,7 +40,7 @@ static WORD VXD_WinVersion(void)
/***********************************************************************
* VXD_VMM
*/
void
VXD_VMM
(
CONTEXT86
*
context
)
void
WINAPI
VXD_VMM
(
CONTEXT86
*
context
)
{
unsigned
service
=
AX_reg
(
context
);
...
...
@@ -113,7 +113,7 @@ void WINAPI VXD_PageFile( CONTEXT86 *context )
/***********************************************************************
* VXD_Reboot
*/
void
VXD_Reboot
(
CONTEXT86
*
context
)
void
WINAPI
VXD_Reboot
(
CONTEXT86
*
context
)
{
unsigned
service
=
AX_reg
(
context
);
...
...
@@ -134,7 +134,7 @@ void VXD_Reboot ( CONTEXT86 *context )
/***********************************************************************
* VXD_VDD
*/
void
VXD_VDD
(
CONTEXT86
*
context
)
void
WINAPI
VXD_VDD
(
CONTEXT86
*
context
)
{
unsigned
service
=
AX_reg
(
context
);
...
...
@@ -155,7 +155,7 @@ void VXD_VDD ( CONTEXT86 *context )
/***********************************************************************
* VXD_VMD
*/
void
VXD_VMD
(
CONTEXT86
*
context
)
void
WINAPI
VXD_VMD
(
CONTEXT86
*
context
)
{
unsigned
service
=
AX_reg
(
context
);
...
...
@@ -295,7 +295,7 @@ void WINAPI VXD_Comm( CONTEXT86 *context )
/***********************************************************************
* VXD_Timer
*/
void
VXD_Timer
(
CONTEXT86
*
context
)
void
WINAPI
VXD_Timer
(
CONTEXT86
*
context
)
{
unsigned
service
=
AX_reg
(
context
);
...
...
@@ -331,7 +331,7 @@ void VXD_Timer( CONTEXT86 *context )
static
DWORD
System_Time
=
0
;
static
WORD
System_Time_Selector
=
0
;
static
void
System_Time_Tick
(
WORD
timer
)
{
System_Time
+=
55
;
}
void
VXD_TimerAPI
(
CONTEXT86
*
context
)
void
WINAPI
VXD_TimerAPI
(
CONTEXT86
*
context
)
{
unsigned
service
=
AX_reg
(
context
);
...
...
@@ -364,7 +364,7 @@ void VXD_TimerAPI ( CONTEXT86 *context )
/***********************************************************************
* VXD_ConfigMG
*/
void
VXD_ConfigMG
(
CONTEXT86
*
context
)
void
WINAPI
VXD_ConfigMG
(
CONTEXT86
*
context
)
{
unsigned
service
=
AX_reg
(
context
);
...
...
@@ -385,7 +385,7 @@ void VXD_ConfigMG ( CONTEXT86 *context )
/***********************************************************************
* VXD_Enable
*/
void
VXD_Enable
(
CONTEXT86
*
context
)
void
WINAPI
VXD_Enable
(
CONTEXT86
*
context
)
{
unsigned
service
=
AX_reg
(
context
);
...
...
@@ -406,7 +406,7 @@ void VXD_Enable ( CONTEXT86 *context )
/***********************************************************************
* VXD_APM
*/
void
VXD_APM
(
CONTEXT86
*
context
)
void
WINAPI
VXD_APM
(
CONTEXT86
*
context
)
{
unsigned
service
=
AX_reg
(
context
);
...
...
@@ -479,7 +479,7 @@ void VXD_APM ( CONTEXT86 *context )
*
*/
void
VXD_Win32s
(
CONTEXT86
*
context
)
void
WINAPI
VXD_Win32s
(
CONTEXT86
*
context
)
{
switch
(
AX_reg
(
context
))
{
...
...
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