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