home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2000 December
/
PCWorld_2000-12_cd.bin
/
Software
/
Vyzkuste
/
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