Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygencorerror.h
Go to the documentation of this file.
00001 /* 00002 * Copyright 2008 James Hawkins 00003 * 00004 * This library is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU Lesser General Public 00006 * License as published by the Free Software Foundation; either 00007 * version 2.1 of the License, or (at your option) any later version. 00008 * 00009 * This library is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * Lesser General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Lesser General Public 00015 * License along with this library; if not, write to the Free Software 00016 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 00017 */ 00018 00019 #ifndef __WINE_CORERROR_H 00020 #define __WINE_CORERROR_H 00021 00022 #include <winerror.h> 00023 00024 #ifndef FACILITY_URT 00025 #define FACILITY_URT 0x13 00026 #endif 00027 00028 #ifndef EMAKEHR 00029 #define SMAKEHR(val) MAKE_HRESULT(SEVERITY_SUCCESS, FACILITY_URT, val) 00030 #define EMAKEHR(val) MAKE_HRESULT(SEVERITY_ERROR, FACILITY_URT, val) 00031 #endif 00032 00033 #define COR_E_ARGUMENT E_INVALIDARG 00034 #define COR_E_INVALIDCAST E_NOINTERFACE 00035 #define COR_E_NULLREFERENCE E_POINTER 00036 #define COR_E_OUTOFMEMORY E_OUTOFMEMORY 00037 #define COR_E_UNAUTHORIZEDACCESS E_ACCESSDENIED 00038 00039 #define COR_E_ARITHMETIC HRESULT_FROM_WIN32(ERROR_ARITHMETIC_OVERFLOW) 00040 #define COR_E_STACKOVERFLOW HRESULT_FROM_WIN32(ERROR_STACK_OVERFLOW) 00041 #define COR_E_ENDOFSTREAM HRESULT_FROM_WIN32(ERROR_HANDLE_EOF) 00042 #define COR_E_FILENOTFOUND HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND) 00043 #define COR_E_BAD_PATHNAME HRESULT_FROM_WIN32(ERROR_BAD_PATHNAME) 00044 #define COR_E_DIRECTORYNOTFOUND HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND) 00045 #define COR_E_PATHTOOLONG HRESULT_FROM_WIN32(ERROR_FILENAME_EXCED_RANGE) 00046 00047 #define COR_E_AMBIGUOUSMATCH _HRESULT_TYPEDEF_(0x8000211D) 00048 #define COR_E_TARGETPARAMCOUNT _HRESULT_TYPEDEF_(0x8002000E) 00049 #define COR_E_DIVIDEBYZERO _HRESULT_TYPEDEF_(0x80020012) 00050 #define COR_E_BADIMAGEFORMAT _HRESULT_TYPEDEF_(0x8007000B) 00051 00052 #define COR_E_ASSEMBLYEXPECTED EMAKEHR(0x1018) 00053 #define COR_E_TYPEUNLOADED EMAKEHR(0x1013) 00054 #define COR_E_EXCEPTION EMAKEHR(0x1500) 00055 #define COR_E_SYSTEM EMAKEHR(0x1501) 00056 #define COR_E_ARGUMENTOUTOFRANGE EMAKEHR(0x1502) 00057 #define COR_E_ARRAYTYPEMISMATCH EMAKEHR(0x1503) 00058 #define COR_E_CONTEXTMARSHAL EMAKEHR(0x1504) 00059 #define COR_E_TIMEOUT EMAKEHR(0x1505) 00060 #define COR_E_EXECUTIONENGINE EMAKEHR(0x1506) 00061 #define COR_E_FIELDACCESS EMAKEHR(0x1507) 00062 #define COR_E_INDEXOUTOFRANGE EMAKEHR(0x1508) 00063 #define COR_E_INVALIDOPERATION EMAKEHR(0x1509) 00064 #define COR_E_SECURITY EMAKEHR(0x150A) 00065 #define COR_E_REMOTING EMAKEHR(0x150B) 00066 #define COR_E_SERIALIZATION EMAKEHR(0x150C) 00067 #define COR_E_VERIFICATION EMAKEHR(0x150D) 00068 #define COR_E_SERVER EMAKEHR(0x150E) 00069 #define COR_E_SERVICEDCOMPONENT EMAKEHR(0x150F) 00070 #define COR_E_METHODACCESS EMAKEHR(0x1510) 00071 #define COR_E_MISSINGFIELD EMAKEHR(0x1511) 00072 #define COR_E_MISSINGMEMBER EMAKEHR(0x1512) 00073 #define COR_E_MISSINGMETHOD EMAKEHR(0x1513) 00074 #define COR_E_MULTICASTNOTSUPPORTED EMAKEHR(0x1514) 00075 #define COR_E_NOTSUPPORTED EMAKEHR(0x1515) 00076 #define COR_E_OVERFLOW EMAKEHR(0x1516) 00077 #define COR_E_RANK EMAKEHR(0x1517) 00078 #define COR_E_SYNCHRONIZATIONLOCK EMAKEHR(0x1518) 00079 #define COR_E_THREADINTERRUPTED EMAKEHR(0x1519) 00080 #define COR_E_MEMBERACCESS EMAKEHR(0x151A) 00081 #define COR_E_THREADSTATE EMAKEHR(0x1520) 00082 #define COR_E_THREADSTOP EMAKEHR(0x1521) 00083 #define COR_E_TYPELOAD EMAKEHR(0x1522) 00084 #define COR_E_ENTRYPOINTNOTFOUND EMAKEHR(0x1523) 00085 #define COR_E_DLLNOTFOUND EMAKEHR(0x1524) 00086 #define COR_E_THREADSTART EMAKEHR(0x1525) 00087 #define COR_E_INVALIDCOMOBJECT EMAKEHR(0x1527) 00088 #define COR_E_NOTFINITENUMBER EMAKEHR(0x1528) 00089 #define COR_E_DUPLICATEWAITOBJECT EMAKEHR(0x1529) 00090 #define COR_E_SEMAPHOREFULL EMAKEHR(0x152B) 00091 #define COR_E_WAITHANDLECANNOTBEOPENED EMAKEHR(0x152C) 00092 #define COR_E_ABANDONEDMUTEX EMAKEHR(0x152D) 00093 #define COR_E_INVALIDOLEVARIANTTYPE EMAKEHR(0x1531) 00094 #define COR_E_MISSINGMANIFESTRESOURCE EMAKEHR(0x1532) 00095 #define COR_E_SAFEARRAYTYPEMISMATCH EMAKEHR(0x1533) 00096 #define COR_E_TYPEINITIALIZATION EMAKEHR(0x1534) 00097 #define COR_E_MARSHALDIRECTIVE EMAKEHR(0x1535) 00098 #define COR_E_MISSINGSATELLITEASSEMBLY EMAKEHR(0x1536) 00099 #define COR_E_FORMAT EMAKEHR(0x1537) 00100 #define COR_E_SAFEARRAYRANKMISMATCH EMAKEHR(0x1538) 00101 #define COR_E_PLATFORMNOTSUPPORTED EMAKEHR(0x1539) 00102 #define COR_E_INVALIDPROGRAM EMAKEHR(0x153A) 00103 #define COR_E_OPERATIONCANCELED EMAKEHR(0x153B) 00104 #define COR_E_INSUFFICIENTMEMORY EMAKEHR(0x153D) 00105 #define COR_E_RUNTIMEWRAPPED EMAKEHR(0x153E) 00106 #define COR_E_DEVICESNOTSUPPORTED EMAKEHR(0x1540) 00107 #define COR_E_DATAMISALIGNED EMAKEHR(0x1541) 00108 #define COR_E_KEYNOTFOUND EMAKEHR(0x1577) 00109 #define COR_E_APPLICATION EMAKEHR(0x1600) 00110 #define COR_E_INVALIDFILTERCRITERIA EMAKEHR(0x1601) 00111 #define COR_E_REFLECTIONTYPELOAD EMAKEHR(0x1602) 00112 #define COR_E_TARGET EMAKEHR(0x1603) 00113 #define COR_E_TARGETINVOCATION EMAKEHR(0x1604) 00114 #define COR_E_CUSTOMATTRIBUTEFORMAT EMAKEHR(0x1605) 00115 #define COR_E_IO EMAKEHR(0x1620) 00116 #define COR_E_FILELOAD EMAKEHR(0x1621) 00117 #define COR_E_OBJECTDISPOSED EMAKEHR(0x1622) 00118 #define COR_E_FAILFAST EMAKEHR(0x1623) 00119 #define COR_E_HOSTPROTECTION EMAKEHR(0x1640) 00120 #define COR_E_ILLEGAL_REENTRANCY EMAKEHR(0x1641) 00121 00122 #define FUSION_E_INVALID_NAME EMAKEHR(0x1047) 00123 00124 #define CLDB_E_FILE_OLDVER EMAKEHR(0x1107) 00125 00126 #define CLR_E_SHIM_RUNTIME EMAKEHR(0x1700) 00127 #define CLR_E_SHIM_RUNTIMEEXPORT EMAKEHR(0x1701) 00128 00129 #endif /* __WINE_CORERROR_H */ Generated on Sat May 26 2012 04:29:56 for ReactOS by
1.7.6.1
|