1/* 2 * COPYRIGHT: GNU GPL, see COPYING in the top level directory 3 * PROJECT: ReactOS CRT 4 * FILE: lib/pseh/amd64/seh_prolog.S 5 * PURPOSE: SEH Support for MSVC 6 * PROGRAMMERS: Timo Kreuzer 7 */ 8 9/* INCLUDES ******************************************************************/ 10 11#include <asm.inc> 12 13EXTERN _except_handler3:PROC 14 15.code 16 17PUBLIC _SEH_prolog 18_SEH_prolog: 19 20 21PUBLIC _SEH_epilog 22_SEH_epilog: 23 ret 24 25END 26