windows-nt/Source/XPSP1/NT/enduser/netmeeting/h/sehcall.h

24 lines
412 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
#ifndef NM_SEH_H
#define NM_SEH_H
// CallWithSEH is a utility function to call a function with structured exception handling
typedef DWORD (CALLBACK *INEXCEPTION)(LPEXCEPTION_RECORD per, PCONTEXT pctx);
typedef DWORD (CALLBACK *EXCEPTPROC)(void* pv);
#ifdef __cplusplus
extern "C" {
#endif
DWORD WINAPI CallWithSEH(EXCEPTPROC pfn, void* pv, INEXCEPTION InException);
#ifdef __cplusplus
}
#endif
#endif