home *** CD-ROM | disk | FTP | other *** search
- #ifndef _FUNCREG_H
- #define _FUNCREG_H
-
- #include <windows.h>
- #include <ole2.h>
-
- typedef void (_stdcall*DDEFUNC)(BSTR strCommand); /*FUNCTION pointer that points to
- a function (in Hackman), which will
- receive the string and interpret it as
- a DDE command.
- */
-
-
- struct SREGFUNCTIONS
- { bool registered; //have values been registered into it?
- DDEFUNC DDEconnection; //read above.
-
- };
-
- #endif