home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 December / PCWorld_2001-12_cd.bin / Software / Topware / Hackman / _SETUP.1 / Funcreg.h < prev    next >
C/C++ Source or Header  |  2000-06-02  |  460b  |  20 lines

  1. #ifndef _FUNCREG_H
  2. #define _FUNCREG_H
  3.  
  4. #include <windows.h>
  5. #include <ole2.h>
  6.  
  7. typedef void (_stdcall*DDEFUNC)(BSTR strCommand);    /*FUNCTION pointer that points to
  8.                                                   a function (in Hackman), which will
  9.                                                   receive the string and interpret it as
  10.                                                   a DDE command.
  11.                                                 */
  12.  
  13.  
  14. struct SREGFUNCTIONS
  15. {    bool registered;        //have values been registered into it?
  16.     DDEFUNC    DDEconnection;    //read above.
  17.  
  18. };
  19.  
  20. #endif