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
416a42c3
Commit
416a42c3
authored
Jan 04, 2000
by
Patrik Stridvall
Committed by
Alexandre Julliard
Jan 04, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated winapi_check to handle the new additions.
parent
b7c84d3b
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
48 additions
and
0 deletions
+48
-0
advapi32.api
tools/winapi_check/win32/advapi32.api
+8
-0
comctl32.api
tools/winapi_check/win32/comctl32.api
+5
-0
odbc32.api
tools/winapi_check/win32/odbc32.api
+31
-0
winapi.pm
tools/winapi_check/winapi.pm
+4
-0
No files found.
tools/winapi_check/win32/advapi32.api
0 → 100644
View file @
416a42c3
%long
POLICY_INFORMATION_CLASS
%long --extension
LSA_HANDLE
\ No newline at end of file
tools/winapi_check/win32/comctl32.api
View file @
416a42c3
...
@@ -5,3 +5,7 @@ HBITMAP
...
@@ -5,3 +5,7 @@ HBITMAP
HDC
HDC
HICON
HICON
HWND
HWND
%ptr
TRACKMOUSEEVENT *
\ No newline at end of file
tools/winapi_check/win32/odbc32.api
0 → 100644
View file @
416a42c3
%long
SQLHANDLE
SQLHDBC
SQLHDESC
SQLHENV
SQLHSTMT
SQLHWND
SQLINTEGER
SQLSMALLINT
SQLUINTEGER
SQLUSMALLINT
%long --extension
SQLRETURNTYPE
%ptr
SQLCHAR *
SQLHANDLE *
SQLHENV *
SQLHSTMT *
SQLINTEGER *
SQLPOINTER
SQLPOINTER *
SQLSMALLINT *
SQLUINTEGER *
SQLUSMALLINT *
tools/winapi_check/winapi.pm
View file @
416a42c3
...
@@ -46,6 +46,7 @@ sub parse_api_file {
...
@@ -46,6 +46,7 @@ sub parse_api_file {
my
$module
=
shift
;
my
$module
=
shift
;
my
$kind
;
my
$kind
;
my
$extension
=
0
;
my
$forbidden
=
0
;
my
$forbidden
=
0
;
$$output
->
progress
(
"$file"
);
$$output
->
progress
(
"$file"
);
...
@@ -60,10 +61,13 @@ sub parse_api_file {
...
@@ -60,10 +61,13 @@ sub parse_api_file {
if
(
s/^%(\S+)\s*//
)
{
if
(
s/^%(\S+)\s*//
)
{
$kind
=
$1
;
$kind
=
$1
;
$forbidden
=
0
;
$forbidden
=
0
;
$extension
=
0
;
$$allowed_kind
{
$kind
}
=
1
;
$$allowed_kind
{
$kind
}
=
1
;
if
(
/^--forbidden/
)
{
if
(
/^--forbidden/
)
{
$forbidden
=
1
;
$forbidden
=
1
;
}
elsif
(
/^--extension/
)
{
$extension
=
1
;
}
}
}
elsif
(
defined
(
$kind
))
{
}
elsif
(
defined
(
$kind
))
{
my
$type
=
$_
;
my
$type
=
$_
;
...
...
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