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
eb8a93cf
Commit
eb8a93cf
authored
Mar 11, 2002
by
Patrik Stridvall
Committed by
Alexandre Julliard
Mar 11, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Minor API update.
- Minor bug fixes.
parent
e4745cbf
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
20 additions
and
7 deletions
+20
-7
nativeapi.pm
tools/winapi_check/nativeapi.pm
+4
-4
advapi32.api
tools/winapi_check/win32/advapi32.api
+2
-0
ole32.api
tools/winapi_check/win32/ole32.api
+4
-0
rpcrt4.api
tools/winapi_check/win32/rpcrt4.api
+0
-1
shlwapi.api
tools/winapi_check/win32/shlwapi.api
+6
-1
winapi_check
tools/winapi_check/winapi_check
+4
-1
No files found.
tools/winapi_check/nativeapi.pm
View file @
eb8a93cf
...
...
@@ -47,11 +47,11 @@ sub new {
my
$conditional_functions
=
\%
{
$self
->
{
CONDITIONAL_FUNCTIONS
}};
my
$api_file
=
"$winapi_check_dir/nativeapi.dat"
;
my
$configure_
in_file
=
"$wine_dir/configure.in
"
;
my
$configure_
ac_file
=
"$wine_dir/configure.ac
"
;
my
$config_h_in_file
=
"$wine_dir/include/config.h.in"
;
$api_file
=~
s/^\.\///
;
$configure_
in
_file
=~
s/^\.\///
;
$configure_
ac
_file
=~
s/^\.\///
;
$config_h_in_file
=~
s/^\.\///
;
$output
->
progress
(
"$api_file"
);
...
...
@@ -67,10 +67,10 @@ sub new {
}
close
(
IN
);
$output
->
progress
(
"$configure_
in
_file"
);
$output
->
progress
(
"$configure_
ac
_file"
);
my
$again
=
0
;
open
(
IN
,
"< $configure_
in
_file"
);
open
(
IN
,
"< $configure_
ac
_file"
);
local
$/
=
"\n"
;
while
(
$again
||
(
defined
(
$_
=
<
IN
>
)))
{
$again
=
0
;
...
...
tools/winapi_check/win32/advapi32.api
View file @
eb8a93cf
...
...
@@ -50,8 +50,10 @@ LPSERVICE_STATUS
LPSERVICE_TABLE_ENTRYA
LPSERVICE_TABLE_ENTRYW
LPVOID
LPVOID *
PACL
PACL *
PBOOL
PDWORD
PGENERIC_MAPPING
PHANDLE
...
...
tools/winapi_check/win32/ole32.api
View file @
eb8a93cf
...
...
@@ -42,6 +42,7 @@ IPersistStream *
IStorage *
IStorage **
IStream *
IUnknown *
LPBC
LPBC *
LPCLSID
...
...
@@ -55,6 +56,7 @@ LPFORMATETC
LPGUID
LPLOCKBYTES *
LPMALLOC *
LPMARSHAL *
LPMESSAGEFILTER
LPMESSAGEFILTER *
LPMONIKER
...
...
@@ -70,6 +72,7 @@ LPOLEOBJECT
LPOLESTREAM
LPOLESTR *
LPPERSISTSTORAGE
LPSTREAM
LPRUNNINGOBJECTTABLE *
LPUNKNOWN
LPUNKNOWN *
...
...
@@ -84,6 +87,7 @@ REFGUID
REFIID
SNB
STGMEDIUM *
ULONG *
WORD *
void *
void **
...
...
tools/winapi_check/win32/rpcrt4.api
View file @
eb8a93cf
...
...
@@ -27,7 +27,6 @@ RPC_STATUS *
UUID *
unsigned char **
unsigned short
void *
%str
...
...
tools/winapi_check/win32/shlwapi.api
View file @
eb8a93cf
...
...
@@ -37,6 +37,7 @@ int
%ptr
BOOL *
CLSID *
DLLVERSIONINFO *
HICON *
IFACE_INDEX_TBL *
...
...
@@ -51,6 +52,7 @@ LPCSTR *
LPCVOID
LPCWSTR *
LPDWORD
LPDWORD *
LPHWND
LPINT
LPITEMIDLIST
...
...
@@ -64,13 +66,16 @@ LPUNKNOWN *
LPVOID
LPVOID *
LPWORD
PACL
PHUSKEY
PSECURITY_DESCRIPTOR
PVOID
REFIID
REFGUID
SHFILEINFOW *
unsigned char
*
UINT
*
WNDCLASSA *
unsigned char *
%ptr --extension
...
...
tools/winapi_check/winapi_check
View file @
eb8a93cf
...
...
@@ -510,7 +510,10 @@ foreach my $file (@c_files) {
if
(
$macro
=~
/^HAVE_X11/
)
{
# Do nothing X Windows is handled differently
}
elsif
(
$macro
=~
/^HAVE_(.*?)_H$/
)
{
if
(
$header
ne
"alloca.h"
&&
!
$preprocessor
->
is_def
(
"STATFS_DEFINED_BY_$1"
))
{
my
$name
=
$1
;
if
(
$header
!~
/^alloca\.h|sys\/time\.h|unistd\.h$/
&&
!
$preprocessor
->
is_def
(
"STATFS_DEFINED_BY_$name"
))
{
$output
->
write
(
"$file: #$directive $argument: is a conditional include, "
.
"but is not protected\n"
);
}
...
...
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