Sign in
goma
/
wine
/
d10c9a47b8d08453f783223b9a9fc8311a8ab868
/
.
/
tools
/
winapi
/
type.pm
blob: 3608355e7bca55d0ec696d27d381ce21835d7831 [
file
]
package
type
;
use
strict
;
sub
new
{
my
$proto
=
shift
;
my
$class
=
ref
(
$proto
)
||
$proto
;
my
$self
=
{};
bless
(
$self
,
$class
);
return $self
;
}
1
;