w32api_deftype
(4.2.0 - 4.2.3 only)
w32api_deftype -- Defines a type for use with other w32api_functions
Description
bool
w32api_deftype ( string typename, string member1_type, string member1_name [, string ... [, string ...]] )
You need to call this function if you would like to define a type for a
w32api call.
Parameters
typename
The name of the type.
member1_type
A member type can be a user defined type. All the type names are case
sensitive. Built in type names should be provided in lowercase.
member1_name
The member name of member1_type
.
...
...
This function takes 2n+1 arguments, where n is the number of members the
type has. After that is the type of the member followed by the members
name (in pairs).
Return Values
Returns TRUE on success or FALSE on failure.
Notes
Warning |
This function is
EXPERIMENTAL. The behaviour of this function, the
name of this function, and anything else documented about this
function may change without notice in a future release of PHP.
Use this function at your own risk. |