Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
f2c2eafa
Commit
f2c2eafa
authored
Nov 27, 2002
by
Patrik Stridvall
Committed by
Alexandre Julliard
Nov 27, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- API files update.
- Minor improvement and bug fixes.
parent
21c3dfaa
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
83 additions
and
17 deletions
+83
-17
options.pm
tools/winapi/options.pm
+2
-4
win32.api
tools/winapi/win32.api
+49
-0
winapi.pm
tools/winapi/winapi.pm
+5
-0
winapi_check_options.pm
tools/winapi/winapi_check_options.pm
+1
-1
modules.dat
tools/winapi_check/modules.dat
+4
-0
modules.pm
tools/winapi_check/modules.pm
+4
-0
winapi_check
tools/winapi_check/winapi_check
+7
-11
winapi_local.pm
tools/winapi_check/winapi_local.pm
+11
-1
No files found.
tools/winapi/options.pm
View file @
f2c2eafa
...
...
@@ -296,7 +296,7 @@ sub options_set {
if
(
/^default$/
)
{
$$refvalue
=
$$option
{
default
};
}
elsif
(
/^all$/
)
{
if
(
$name
!~
/^
help|debug|verbose|module
$/
)
{
if
(
$name
!~
/^
(?:help|debug|verbose|module)
$/
)
{
if
(
ref
(
$$refvalue
)
ne
"HASH"
)
{
$$refvalue
=
1
;
}
else
{
...
...
@@ -304,7 +304,7 @@ sub options_set {
}
}
}
elsif
(
/^none$/
)
{
if
(
$name
!~
/^
help|debug|verbose|module
$/
)
{
if
(
$name
!~
/^
(?:help|debug|verbose|module)
$/
)
{
if
(
ref
(
$$refvalue
)
ne
"HASH"
)
{
$$refvalue
=
0
;
}
else
{
...
...
@@ -367,8 +367,6 @@ sub show_help {
}
}
if
(
$default
==
$current
)
{
$output
->
write
(
"$description (default)\n"
);
}
else
{
$output
->
write
(
"$description\n"
);
}
}
...
...
tools/winapi/win32.api
View file @
f2c2eafa
...
...
@@ -159,6 +159,48 @@ void
LPCWSTR
LPWSTR
%%cabinet.dll
%long
BOOL
HFCI
HFDI
INT_PTR
TCOMP
USHORT
int
%ptr
PCCAB
PERF
PFDICABINETINFO
PFNALLOC
PFNCLOSE
PFNFCIALLOC
PFNFCICLOSE
PFNFCIDELETE
PFNFCIFILEPLACED
PFNFCIFREE
PFNFCIGETNEXTCABINET
PFNFCIGETOPENINFO
PFNFCIGETTEMPFILE
PFNFCIOPEN
PFNFCIREAD
PFNFCISEEK
PFNFCISTATUS
PFNFCIWRITE
PFNFDIDECRYPT
PFNFDINOTIFY
PFNFREE
PFNOPEN
PFNREAD
PFNSEEK
PFNWRITE
char *
void *
%%comcat.dll
%long
...
...
@@ -881,6 +923,7 @@ LPVOID
LPVOID *
LPWORD
LPWSTR *
MEMMANINFO *
NUMBERFMTA *
NUMBERFMTW *
OFSTRUCT *
...
...
@@ -1270,6 +1313,7 @@ __non_rtti_object *
_onexit_t
_onexit_t **
_se_translator_function
_stati64 *
bad_cast *
bad_typeid *
char *
...
...
@@ -1459,6 +1503,7 @@ LPCVOID *
LPDWORD
LPDWORD *
LPRTL_RWLOCK
LPTIME_ZONE_INFORMATION
LPVOID
LPVOID *
LPWSTR *
...
...
@@ -1504,6 +1549,7 @@ PVOID
PVOID *
RTL_CRITICAL_SECTION *
STRING *
TIME_ZONE_INFORMATION *
UINT *
ULONG *
ULONGLONG *
...
...
@@ -2984,6 +3030,7 @@ INTERNET_STATUS_CALLBACK
LPBYTE
LPCSTR *
LPCVOID
LPCWSTR *
LPDWORD
LPINTERNET_BUFFERSA
LPINTERNET_BUFFERSW
...
...
@@ -3194,6 +3241,8 @@ LPWSAOVERLAPPED
LPWSAOVERLAPPED_COMPLETION_ROUTINE
LPWSAPROTOCOL_INFOA
LPWSAPROTOCOL_INFOW
LPWSASERVICECLASSINFOA
LPWSASERVICECLASSINFOW
WS_fd_set *
char *
int *
...
...
tools/winapi/winapi.pm
View file @
f2c2eafa
...
...
@@ -40,6 +40,10 @@ sub import {
&
Exporter::
import
(
@_
);
$
Exporter::
ExportLevel
--
;
if
(
defined
(
$modules
)
&&
defined
(
$win16api
)
&&
defined
(
$win32api
))
{
return
;
}
require
modules
;
import
modules
qw($modules)
;
...
...
@@ -286,6 +290,7 @@ sub parse_spec_file {
if
(
$flags
=~
/(?:-register|-interrupt)/
)
{
if
(
$arguments
)
{
$arguments
.=
" "
;
}
$arguments
.=
"ptr"
;
$calling_convention
.=
" -register"
;
}
if
(
$external_name
ne
"@"
)
{
...
...
tools/winapi/winapi_check_options.pm
View file @
f2c2eafa
...
...
@@ -76,7 +76,7 @@ my %options_long = (
"calling-convention-win32"
=>
{
default
=>
1
,
parent
=>
"calling-convention"
,
description
=>
"calling convention checking (Win32)"
},
"misplaced"
=>
{
default
=>
1
,
parent
=>
"local"
,
description
=>
"check for misplaced functions"
},
"statements"
=>
{
default
=>
0
,
parent
=>
"local"
,
description
=>
"check for statements inconsistances"
},
"cross-call"
=>
{
default
=>
0
,
parent
=>
"statements"
,
description
=>
"check for cross calling functions"
},
"cross-call"
=>
{
default
=>
0
,
parent
=>
[
"statements"
,
"win16"
,
"win32"
]
,
description
=>
"check for cross calling functions"
},
"cross-call-win32-win16"
=>
{
default
=>
0
,
parent
=>
"cross-call"
,
description
=>
"check for cross calls between win32 and win16"
},
...
...
tools/winapi_check/modules.dat
View file @
f2c2eafa
...
...
@@ -16,6 +16,10 @@ dlls/avifil32
dlls/avifil32
% dlls/cabinet/cabinet.spec
dlls/cabinet
% dlls/comcat/comcat.spec
dlls/comcat
...
...
tools/winapi_check/modules.pm
View file @
f2c2eafa
...
...
@@ -44,6 +44,10 @@ sub import {
&
Exporter::
import
(
@_
);
$
Exporter::
ExportLevel
--
;
if
(
defined
(
$modules
))
{
return
;
}
$modules
=
'modules'
->
new
;
}
...
...
tools/winapi_check/winapi_check
View file @
f2c2eafa
...
...
@@ -61,10 +61,9 @@ use winapi_local;
use
winapi_global
;
use
winapi_parser
;
my
%
declared_functions
;
my
%
include2info
;
{
if
(
$options
->
global
)
{
my
@files
=
get_h_files
(
"winelib"
);
my
$progress_current
=
0
;
...
...
@@ -152,6 +151,8 @@ if(1) {
my
$progress_current
=
0
;
my
$progress_max
=
scalar
(
@c_files
);
my
%
declared_functions
;
if
(
$options
->
headers
)
{
$progress_max
+=
scalar
(
@h_files
);
...
...
@@ -340,14 +341,9 @@ foreach my $file (@c_files) {
}
}
foreach
my
$module
(
$function
->
modules
)
{
$module2functions
{
$module
}{
$internal_name
}
=
$function
;
my
@types
=
(
$return_type
);
my
$refargument_types
=
$function
->
argument_types
;
if
(
defined
(
$refargument_types
))
{
push
@types
,
@$refargument_types
;
if
(
$options
->
global
)
{
foreach
my
$module
(
$function
->
modules
)
{
$module2functions
{
$module
}{
$internal_name
}
=
$function
;
}
}
...
...
tools/winapi_check/winapi_local.pm
View file @
f2c2eafa
...
...
@@ -150,6 +150,12 @@ sub _check_function {
my
$declared_calling_convention
=
$winapi
->
function_internal_calling_convention
(
$internal_name
);
my
@declared_argument_kinds
=
split
(
/\s+/
,
$winapi
->
function_internal_arguments
(
$internal_name
));
my
$declared_register
=
0
;
if
(
$declared_calling_convention
=~
/^(\w+) -register$/
)
{
$declared_register
=
1
;
$declared_calling_convention
=
$1
;
}
if
(
$implemented_calling_convention
ne
$declared_calling_convention
&&
$implemented_calling_convention
ne
"asm"
&&
!
(
$declared_calling_convention
=~
/^pascal/
&&
$forbidden_return_type
)
&&
...
...
@@ -179,7 +185,7 @@ sub _check_function {
}
if
(
$#argument_types
!=
-
1
&&
$argument_types
[
$#argument_types
]
eq
"CONTEXT *"
&&
$internal_name
!~
/^(Get|Set)ThreadContext
$/
)
# FIXME: Kludge
$internal_name
=~
/^(?:RtlRaiseException|RtlUnwind|NtRaiseException)
$/
)
# FIXME: Kludge
{
$#argument_types
--
;
}
...
...
@@ -220,6 +226,10 @@ sub _check_function {
}
}
@argument_types
;
if
(
$declared_register
&&
$argument_kinds
[
$#argument_kinds
]
ne
"context86"
)
{
$output
->
write
(
"function declared as register, but CONTEXT86 * is not last argument\n"
);
}
for
my
$n
(
0
..
$#argument_kinds
)
{
if
(
!
defined
(
$argument_kinds
[
$n
])
||
!
defined
(
$declared_argument_kinds
[
$n
]))
{
next
;
}
...
...
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