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
ad00529b
Commit
ad00529b
authored
Jan 25, 2001
by
Patrik Stridvall
Committed by
Alexandre Julliard
Jan 25, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor bugfixes.
parent
0c610287
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
8 deletions
+9
-8
msvcrt.api
tools/winapi_check/win32/msvcrt.api
+0
-4
oleaut32.api
tools/winapi_check/win32/oleaut32.api
+1
-0
winedos.api
tools/winapi_check/win32/winedos.api
+3
-1
winapi.pm
tools/winapi_check/winapi.pm
+1
-1
winapi_check
tools/winapi_check/winapi_check
+2
-0
winapi_local.pm
tools/winapi_check/winapi_local.pm
+2
-2
No files found.
tools/winapi_check/win32/msvcrt.api
View file @
ad00529b
...
...
@@ -26,13 +26,9 @@ ULONGLONG
%ptr
CHAR *
DWORD *
LPCVOID
LPDWORD *
LPINT
LPTHREAD_START_ROUTINE
LPVOID
MSVCRT__INITTERMFUN *
MSVCRT_EXCEPTION_FRAME *
MSVCRT_FILE *
...
...
tools/winapi_check/win32/oleaut32.api
View file @
ad00529b
...
...
@@ -35,6 +35,7 @@ WORD
int
short
signed char
unsigned int
%ptr
...
...
tools/winapi_check/win32/winedos.api
View file @
ad00529b
...
...
@@ -3,13 +3,15 @@
BOOL
BYTE
HANDLE
INT
UINT
WORD
int
%ptr
CONTEXT86 *
DOSRELAY
LPDOSTASK
LPVOID
...
...
tools/winapi_check/winapi.pm
View file @
ad00529b
...
...
@@ -351,7 +351,7 @@ sub parse_spec_file {
}
elsif
(
$$function_module
{
$internal_name
}
!~
/$module/
)
{
$$function_module
{
$internal_name
}
.=
" & $module"
;
}
}
elsif
(
/^(\d+|@)\s+forward\s+(\S+)\s+(\S+)\.(\S+)$/
)
{
}
elsif
(
/^(\d+|@)\s+forward
(?:\s+(?:-noimport|-norelay|-i386|-ret64))?
\s+(\S+)\s+(\S+)\.(\S+)$/
)
{
$ordinal
=
$1
;
my
$external_name
=
$2
;
...
...
tools/winapi_check/winapi_check
View file @
ad00529b
...
...
@@ -148,6 +148,8 @@ my %includes;
my
$header
=
$1
;
if
(
-
e
"$file_dir/$header"
)
{
$includes
{
$file
}{
includes
}{
"$file_dir/$header"
}
++
;
}
elsif
(
-
e
"$file_dir/../$header"
)
{
# FIXME: This is not correct
$includes
{
$file
}{
includes
}{
"$file_dir/../$header"
}
++
;
# FIXME: This is not correct
}
elsif
(
-
e
"$wine_dir/include/$header"
)
{
$includes
{
$file
}{
includes
}{
"include/$header"
}
++
;
}
else
{
...
...
tools/winapi_check/winapi_local.pm
View file @
ad00529b
...
...
@@ -50,7 +50,7 @@ sub check_function {
}
my
$segmented
=
0
;
if
(
$implemented_return_kind
=~
/^segptr|segstr$/
)
{
if
(
defined
(
$implemented_return_kind
)
&&
$implemented_return_kind
=~
/^segptr|segstr$/
)
{
$segmented
=
1
;
}
...
...
@@ -73,7 +73,7 @@ sub check_function {
}
elsif
(
$calling_convention
=~
/^VFWAPIV|WINAPIV$/
)
{
$implemented_calling_convention
=
"varargs"
;
}
elsif
(
$calling_convention
=~
/^__stdcall|VFWAPI|WINAPI|CALLBACK$/
)
{
if
(
$implemented_return_kind
=~
/^longlong$/
)
{
if
(
defined
(
$implemented_return_kind
)
&&
$implemented_return_kind
=~
/^longlong$/
)
{
$implemented_calling_convention
=
"stdcall"
;
# FIXME: Check entry flags
}
else
{
$implemented_calling_convention
=
"stdcall"
;
...
...
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