source: trunk/src/msvcrt/msvcrt.cpp@ 1080

Last change on this file since 1080 was 1080, checked in by sandervl, 26 years ago

Creation

File size: 1.6 KB
Line 
1/* $Id: msvcrt.cpp,v 1.1 1999-09-28 13:26:06 sandervl Exp $ */
2
3/*
4 * The Visual C RunTime DLL
5 *
6 * Implements Visual C run-time functionality
7 *
8 * Copyright 1999 Jens Wiessner
9 */
10
11
12#include <os2win.h>
13#include "debugtools.h"
14#include <debugdefs.h>
15
16
17DEFAULT_DEBUG_CHANNEL(msvcrt)
18
19
20/*********************************************************************
21 * _XcptFilter (MSVCRT.21)
22 * FIXME - Could not find anything about it
23 */
24INT CDECL MSVCRT__XcptFilter(DWORD ret)
25{
26 dprintf(("MSVCRT: _XcptFilter not implemented.\n"));
27 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
28 return FALSE;
29}
30
31
32/*********************************************************************
33 * _CxxThrowException (MSVCRT.66)
34 * FIXME - Could not find anything about it
35 */
36INT CDECL MSVCRT__CxxThrowException(DWORD ret)
37{
38 dprintf(("MSVCRT: _CxxThrowException not implemented.\n"));
39 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
40 return FALSE;
41}
42
43
44/*********************************************************************
45 * _EH_prolog (MSVCRT.67)
46 * FIXME - Could not find anything about it
47 */
48INT CDECL MSVCRT__EH_prolog(DWORD ret)
49{
50 dprintf(("MSVCRT: _EH_prolog not implemented.\n"));
51 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
52 return FALSE;
53}
54
55
56/*********************************************************************
57 * __CxxFrameHandler (MSVCRT.74)
58 * FIXME - Could not find anything about it
59 */
60INT CDECL MSVCRT___CxxFrameHandler(DWORD ret)
61{
62 dprintf(("MSVCRT: __CxxFrameHandler not implemented.\n"));
63 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
64 return FALSE;
65}
Note: See TracBrowser for help on using the repository browser.