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
b9eab15d
Commit
b9eab15d
authored
Nov 26, 1998
by
Ulrich Weigand
Committed by
Alexandre Julliard
Nov 26, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented KERNEL.602 and stub for KERNEL.490.
parent
f76dac45
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
2 deletions
+28
-2
kernel.spec
if1632/kernel.spec
+2
-2
task.c
loader/task.c
+26
-0
No files found.
if1632/kernel.spec
View file @
b9eab15d
...
...
@@ -394,7 +394,7 @@ file krnl386.exe
487 stub MapProcessHandle
488 pascal GetModuleHandle32(str) GetModuleHandle32A
489 stub KERNEL_489 # VWin32_BoostWithDecay
490
stub
KERNEL_490
490
pascal16 KERNEL_490(word)
KERNEL_490
491 pascal RegisterServiceProcess(long long) RegisterServiceProcess
492 stub WOAAbort
493 stub UTInit
...
...
@@ -469,7 +469,7 @@ file krnl386.exe
600 stub KERNEL_600 # AllocSelector (?)
601 stub KERNEL_601 # FreeSelector (?)
602
stub GetCurrentHInstanc
eDS
602
register GetDummyModuleHandleDS() GetDummyModuleHandl
eDS
603 stub KERNEL_603 # OutputDebugString (?)
604 register CBClientGlueSL() CBClientGlueSL
605 pascal AllocSLThunkletCallback(long long) AllocSLThunkletCallback
...
...
loader/task.c
View file @
b9eab15d
...
...
@@ -1074,6 +1074,16 @@ void WINAPI Yield16(void)
else
OldYield
();
}
/***********************************************************************
* KERNEL_490 (KERNEL.490)
*/
HTASK16
WINAPI
KERNEL_490
(
HTASK16
someTask
)
{
if
(
!
someTask
)
return
0
;
FIXME
(
task
,
"(%04x): stub
\n
"
,
someTask
);
return
0
;
}
/***********************************************************************
* MakeProcInstance16 (KERNEL.51)
...
...
@@ -1511,6 +1521,22 @@ HINSTANCE16 WINAPI GetTaskDS(void)
return
pTask
->
hInstance
;
}
/***********************************************************************
* GetDummyModuleHandleDS (KERNEL.602)
*/
VOID
WINAPI
GetDummyModuleHandleDS
(
CONTEXT
*
context
)
{
TDB
*
pTask
;
WORD
selector
;
AX_reg
(
context
)
=
0
;
if
(
!
(
pTask
=
(
TDB
*
)
GlobalLock16
(
GetCurrentTask
()
)))
return
;
if
(
!
(
pTask
->
flags
&
TDBF_WIN32
))
return
;
selector
=
GlobalHandleToSel
(
pTask
->
hModule
);
DS_reg
(
context
)
=
selector
;
AX_reg
(
context
)
=
selector
;
}
/***********************************************************************
* IsTask (KERNEL.320)
...
...
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