Hello;
I am using Borland
C++ 6 Evaluaion Version for making dll. Can You help me out from
this error.
/*Voice.h*/
//#include
"CFeatureMatrix.h"
//#include "CVoiceInterface.h"
//#include
"CVoicePrint.h"
BOOL WINAPI
DllMain(HINSTANCE hinstDLL, DWORD fwdreason, LPVOID
lpvReserved)
{
return
1;
}
When I compile to
make dll I get "stddef.h:Declaration terminated incorrectly" error and second
line shows "stddef.h:Qualifier 'std' is not a class or namespace name".
If I remove Comment
for including the header file I get "Voice.h:Declaration terminated incorrectly"
/*Voice.h*/
#include
"CFeatureMatrix.h"
#include "CVoiceInterface.h"
#include
"CVoicePrint.h"
BOOL WINAPI
DllMain(HINSTANCE hinstDLL, DWORD fwdreason, LPVOID
lpvReserved)
{
return
1;
}
Regards
Deepak