NAME
Win32::API::OutputDebugString - Perl wrapper for the OutputDebugString on Win32 Platforms =head1 SYNOPSIS
OutputDebugString(
"Foo bar"
,
"baz\n"
);
# sends Foo barbaz\n to the debugger
DStr(
"Foo bar"
,
"baz\n"
);
# Same
DESCRIPTION
Wrapper for the OutputDebugString Win32 API.
It contains two identical functions (OutputDebugString and DStr) which join their args an send them to the eponymous Win32 Api.
DStr is meant to just save some typing.
EXPORT
None by default.
Exportable functions
Win32::API::OutputDebugString::OutputDebugString
Win32::API::OutputDebugString::DStr
AUTHOR
Alessandro Forghieri alf@orion.it
LICENSE
GPL or Artistic License.
SEE ALSO
The Windows API documentation; perl(1).