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