Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Yoann Laissus
wine
Commits
ff9c44f3
Commit
ff9c44f3
authored
25 years ago
by
Ulrich Weigand
Committed by
Alexandre Julliard
25 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Bugfix: missing WINAPIs added.
parent
a8c54fb8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
msdos/vxd.c
+10
-10
10 additions, 10 deletions
msdos/vxd.c
with
10 additions
and
10 deletions
msdos/vxd.c
+
10
−
10
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
))
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment