tags:

views:

44

answers:

1

I'm trying to compile some Microsoft SAPI example code in a non-Microsoft C++ Compiler, and am getting an error at this line:

    _HFILE m_hfilePrev;

Presumably because it doesn't recognize the _HFILE #define. Does anybody know what .h file I should include for that?

+1  A: 

It is defined in crtdbg.h

typedef void *_HFILE; /* file handle pointer */
Brian R. Bondy