Sign in
goma
/
wine
/
15a478f839f2c2e04c442a14bbd1746768f5c709
/
.
/
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
;