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 >
Wrap
C/C++ Source or Header
|
2000-06-02
|
460b
|
20 lines
#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