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 |
|
---|
17 | DEFAULT_DEBUG_CHANNEL(msvcrt)
|
---|
18 |
|
---|
19 |
|
---|
20 | /*********************************************************************
|
---|
21 | * _XcptFilter (MSVCRT.21)
|
---|
22 | * FIXME - Could not find anything about it
|
---|
23 | */
|
---|
24 | INT 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 | */
|
---|
36 | INT 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 | */
|
---|
48 | INT 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 | */
|
---|
60 | INT CDECL MSVCRT___CxxFrameHandler(DWORD ret)
|
---|
61 | {
|
---|
62 | dprintf(("MSVCRT: __CxxFrameHandler not implemented.\n"));
|
---|
63 | SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
---|
64 | return FALSE;
|
---|
65 | }
|
---|