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
9ba500ca
Commit
9ba500ca
authored
Feb 19, 1999
by
Ian Schmidt
Committed by
Alexandre Julliard
Feb 19, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Partial stub implementation of undocumented KERNEL routine PK16FNF,
needed by Win98 EXPLORER. Thanks to Ulrich Weigand for information.
parent
a0a719e2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
2 deletions
+19
-2
kernel32.spec
relay32/kernel32.spec
+1
-1
kernel32.c
win32/kernel32.c
+18
-1
No files found.
relay32/kernel32.spec
View file @
9ba500ca
...
...
@@ -103,7 +103,7 @@ init MAIN_KernelInit
88 varargs SSCall() SSCall
89 register FT_PrologPrime() FT_PrologPrime
90 register QT_ThunkPrime() QT_ThunkPrime
91 st
ub
PK16FNF
91 st
dcall PK16FNF(ptr)
PK16FNF
92 stdcall GetPK16SysVar() GetPK16SysVar
93 stdcall GetpWin16Lock(ptr) GetpWin16Lock32
94 stdcall _CheckNotSysLevel(ptr) _CheckNotSysLevel
...
...
win32/kernel32.c
View file @
9ba500ca
...
...
@@ -1362,5 +1362,22 @@ BOOL32 WINAPI GetBinaryType32W (LPCWSTR lpApplicationName, LPDWORD lpBinaryType)
return
ret
;
}
/*********************************************************************
* PK16FNF [KERNEL32.91]
*
* This routine fills in the supplied 13-byte (8.3 plus terminator)
* string buffer with the 8.3 filename of a recently loaded 16-bit
* module. It is unknown exactly what modules trigger this
* mechanism or what purpose this serves. Win98 Explorer (and
* probably also Win95 with IE 4 shell integration) calls this
* several times during initialization.
*
* FIXME: find out what this really does and make it work.
*/
void
WINAPI
PK16FNF
(
LPSTR
strPtr
)
{
FIXME
(
win32
,
"(%p): stub
\n
"
,
strPtr
);
/* fill in a fake filename that'll be easy to recognize */
lstrcpy32A
(
strPtr
,
"WINESTUB.FIX"
);
}
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