INtime SDK Help
EXCEPTION structure

Syntax

typedef struct tagException {
    LPPROC    ExceptionHandlerPtr;
    WORD      ExceptionHandlerPtr_seg;
    BYTE      ExceptionMode;
} EXCEPTION, *LPEXCEPTION;

Fields

ExceptionHandlerPtr
Points to the first instruction of the exception handler. If null, the exception handler of the calling thread's parent process is assigned.
For more information about writing exception handlers, see INtime exception handling overview.
ExceptionHandlerPtr_seg
For flat model compilers only, the selector for the pointer.
ExceptionMode
Changes the default exception mode. In general you should not change this value. Its only use is to handle floating-point exceptions applications prior to INtime 6.
From INtime 6 onwards floating point exceptions can be handled using SEH. See "Floating Point Exception Handling" sample project for details.
Value Description
1 Set to this value to enable FP exceptions in legacy mode.
All other values Reserved for system use. Do not set in applications.
   
See Also

Exceptions