Win32::DDE - Perl extension for Win32 DDE


NAME

Win32::DDE - Perl extension for Win32 DDE


SYNOPSIS

  use Win32::DDE;
  if ($Client->Error == Win32::DDE::DMLERR_NO_CONV_ESTABLISHED) {
   die "Hey! start the silly DDE server!";
  }
  print Win32::DDE::ErrorText ($Client->Error);


OVERVIEW

This module is mostly the interface to the .xs that actually does the low level interface to the DDEML, and the namespace to look up the DDEML XTYP_* and DMLERR_* constants. It's mostly useless by itself.

The only added value here is the Win32::DDE::ErrorText function.

See the Win32::DDE::Client manpage for the useful stuff.


FUNCTIONS

ErrorText (CODE)
Return the printable name of a DDEML error code (i.e. 'DMLERR_FOOBAR').


AUTHOR

Doug Wegscheid, wegscd@whirlpool.com


SEE ALSO

the Win32::DDE::Client manpage

 Win32::DDE - Perl extension for Win32 DDE