Parameter
|
Description
|
hDLL
|
Handle of the DLL supplied by the DLL entry point routine
|
functionInfo
|
Pointer to the FUNCTIONINFO structure that contains information about the function. The FUNCTIONINFO structure has the following form:
typedef struct tagFUNCTIONINFO{
char * lpstrName; char * lpstrParameters; char * lpstrDescription; LPCFUNCTION lpfnMyCFunction; long unsigned int returnType; unsigned int nArgs; long unsigned int argType[MAX_ARGS]; } FUNCTIONINFO; |