📄 cierror.h
字号:
#ifndef _CIERROR_H_
#define _CIERROR_H_
#ifndef FACILITY_WINDOWS
//
// Values are 32 bit values layed out as follows:
//
// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
// +---+-+-+-----------------------+-------------------------------+
// |Sev|C|R| Facility | Code |
// +---+-+-+-----------------------+-------------------------------+
//
// where
//
// Sev - is the severity code
//
// 00 - Success
// 01 - Informational
// 10 - Warning
// 11 - Error
//
// C - is the Customer code flag
//
// R - is a reserved bit
//
// Facility - is the facility code
//
// Code - is the facility's status code
//
//
// Define the facility codes
//
#define FACILITY_WINDOWS 0x8
#define FACILITY_NULL 0x0
#define FACILITY_ITF 0x4
//
// Define the severity codes
//
#define STATUS_SEVERITY_SUCCESS 0x0
#define STATUS_SEVERITY_COFAIL 0x3
#define STATUS_SEVERITY_COERROR 0x2
//
// MessageId: NOT_AN_ERROR1
//
// MessageText:
//
// NOTE: This dummy error message is necessary to force MC to output
// the above defines inside the FACILITY_WINDOWS guard instead
// of leaving it empty.
//
#define NOT_AN_ERROR1 ((HRESULT)0x00081600L)
#endif // FACILITY_WINDOWS
//
// Range 0x1600-0x1850 is reserved by Content Index.
//
//
// Codes 0x1600-0x164f are reserved for QUERY
//
//
// MessageId: QUERY_E_FAILED
//
// MessageText:
//
// Call failed for unknown reason.
//
#define QUERY_E_FAILED ((HRESULT)0x80041600L)
//
// MessageId: QUERY_E_INVALIDQUERY
//
// MessageText:
//
// Invalid parameter.
//
#define QUERY_E_INVALIDQUERY ((HRESULT)0x80041601L)
//
// MessageId: QUERY_E_INVALIDRESTRICTION
//
// MessageText:
//
// The query restriction could not be parsed.
//
#define QUERY_E_INVALIDRESTRICTION ((HRESULT)0x80041602L)
//
// MessageId: QUERY_E_INVALIDSORT
//
// MessageText:
//
// An invalid sort order was requested.
//
#define QUERY_E_INVALIDSORT ((HRESULT)0x80041603L)
//
// MessageId: QUERY_E_INVALIDCATEGORIZE
//
// MessageText:
//
// An invalid categorization order was requested.
//
#define QUERY_E_INVALIDCATEGORIZE ((HRESULT)0x80041604L)
//
// MessageId: QUERY_E_ALLNOISE
//
// MessageText:
//
// The query contained only ignored words.
//
#define QUERY_E_ALLNOISE ((HRESULT)0x80041605L)
//
// MessageId: QUERY_E_TOOCOMPLEX
//
// MessageText:
//
// The query was too complex to be executed.
//
#define QUERY_E_TOOCOMPLEX ((HRESULT)0x80041606L)
//
// MessageId: QUERY_E_TIMEDOUT
//
// MessageText:
//
// The query exceeded its execution time limit.
//
#define QUERY_E_TIMEDOUT ((HRESULT)0x80041607L)
//
// MessageId: QUERY_E_DUPLICATE_OUTPUT_COLUMN
//
// MessageText:
//
// One or more columns in the output column list is a duplicate.
//
#define QUERY_E_DUPLICATE_OUTPUT_COLUMN ((HRESULT)0x80041608L)
//
// MessageId: QUERY_E_INVALID_OUTPUT_COLUMN
//
// MessageText:
//
// One or more columns in the output column list is not valid.
//
#define QUERY_E_INVALID_OUTPUT_COLUMN ((HRESULT)0x80041609L)
//
// Codes 0x1650-0x167f are reserved for QUERYLIB (see qutil\h\qutilerr.mc)
//
//
// 0x1680 - 0x169F are Filter daemon error codes
//
//
// MessageId: FDAEMON_W_WORDLISTFULL
//
// MessageText:
//
// Wordlist has reached maximum size. Additional documents should not be filtered.
//
#define FDAEMON_W_WORDLISTFULL ((HRESULT)0x00041680L)
//
// MessageId: FDAEMON_E_LOWRESOURCE
//
// MessageText:
//
// The system is running out of one of more resources needed for filtering, usually memory.
//
#define FDAEMON_E_LOWRESOURCE ((HRESULT)0x80041681L)
//
// MessageId: FDAEMON_E_FATALERROR
//
// MessageText:
//
// A critical error occurred during document filtering. Consult system administrator.
//
#define FDAEMON_E_FATALERROR ((HRESULT)0x80041682L)
//
// MessageId: FDAEMON_E_PARTITIONDELETED
//
// MessageText:
//
// Documents not stored in content index because partition has been deleted.
//
#define FDAEMON_E_PARTITIONDELETED ((HRESULT)0x80041683L)
//
// MessageId: FDAEMON_E_CHANGEUPDATEFAILED
//
// MessageText:
//
// Documents not stored in content index because update of changelist failed.
//
#define FDAEMON_E_CHANGEUPDATEFAILED ((HRESULT)0x80041684L)
//
// MessageId: FDAEMON_W_EMPTYWORDLIST
//
// MessageText:
//
// Final wordlist was empty.
//
#define FDAEMON_W_EMPTYWORDLIST ((HRESULT)0x00041685L)
//
// MessageId: FDAEMON_E_WORDLISTCOMMITFAILED
//
// MessageText:
//
// Commit of wordlist failed. Data not available for query.
//
#define FDAEMON_E_WORDLISTCOMMITFAILED ((HRESULT)0x80041686L)
//
// MessageId: FDAEMON_E_NOWORDLIST
//
// MessageText:
//
// No wordlist is being constructed. May happen after fatal filter error.
//
#define FDAEMON_E_NOWORDLIST ((HRESULT)0x80041687L)
//
// MessageId: FDAEMON_E_TOOMANYFILTEREDBLOCKS
//
// MessageText:
//
// During document filtering the limit on buffers has been exceeded.
//
#define FDAEMON_E_TOOMANYFILTEREDBLOCKS ((HRESULT)0x80041688L)
//
// ISearch error codes
//
//
// MessageId: SEARCH_S_NOMOREHITS
//
// MessageText:
//
// End of hits has been reached.
//
#define SEARCH_S_NOMOREHITS ((HRESULT)0x000416A0L)
//
// MessageId: SEARCH_E_NOMONIKER
//
// MessageText:
//
// Retrival of hits as monikers is not supported (by filter passed into Init).
//
#define SEARCH_E_NOMONIKER ((HRESULT)0x800416A1L)
//
// MessageId: SEARCH_E_NOREGION
//
// MessageText:
//
// Retrival of hits as filter regions is not supported (by filter passed into Init).
//
#define SEARCH_E_NOREGION ((HRESULT)0x800416A2L)
//
// Filter error codes
//
//
// MessageId: FILTER_E_TOO_BIG
//
// MessageText:
//
// File is too large to filter.
//
#define FILTER_E_TOO_BIG ((HRESULT)0x80041730L)
//
// MessageId: FILTER_S_PARTIAL_CONTENTSCAN_IMMEDIATE
//
// MessageText:
//
// A partial content scan of the disk needs to be scheduled for immediate execution.
//
#define FILTER_S_PARTIAL_CONTENTSCAN_IMMEDIATE ((HRESULT)0x00041731L)
//
// MessageId: FILTER_S_FULL_CONTENTSCAN_IMMEDIATE
//
// MessageText:
//
// A full content scan of the disk needs to be scheduled for immediate execution.
//
#define FILTER_S_FULL_CONTENTSCAN_IMMEDIATE ((HRESULT)0x00041732L)
//
// MessageId: FILTER_S_CONTENTSCAN_DELAYED
//
// MessageText:
//
// A content scan of the disk needs to be scheduled for execution later.
//
#define FILTER_S_CONTENTSCAN_DELAYED ((HRESULT)0x00041733L)
//
// MessageId: FILTER_E_CONTENTINDEXCORRUPT
//
// MessageText:
//
// The content index is corrupt. A content scan will to be scheduled after chkdsk or autochk is run.
//
#define FILTER_E_CONTENTINDEXCORRUPT ((HRESULT)0xC0041734L)
//
// MessageId: FILTER_S_DISK_FULL
//
// MessageText:
//
// The disk is getting full.
//
#define FILTER_S_DISK_FULL ((HRESULT)0x00041735L)
//
// MessageId: FILTER_E_ALREADY_OPEN
//
// MessageText:
//
// A file is already open. Cannot open another one while a file is open.
//
#define FILTER_E_ALREADY_OPEN ((HRESULT)0x80041736L)
//
// MessageId: FILTER_E_UNREACHABLE
//
// MessageText:
//
// The file is not reachable.
//
#define FILTER_E_UNREACHABLE ((HRESULT)0x80041737L)
//
// MessageId: FILTER_E_IN_USE
//
// MessageText:
//
// The document is in use by another process.
//
#define FILTER_E_IN_USE ((HRESULT)0x80041738L)
//
// MessageId: FILTER_E_NOT_OPEN
//
// MessageText:
//
// The document is not opened.
//
#define FILTER_E_NOT_OPEN ((HRESULT)0x80041739L)
//
// MessageId: FILTER_S_NO_PROPSETS
//
// MessageText:
//
// The document has no property sets.
//
#define FILTER_S_NO_PROPSETS ((HRESULT)0x0004173AL)
//
// MessageId: FILTER_E_NO_SUCH_PROPERTY
//
// MessageText:
//
// There is no property with the given GUID.
//
#define FILTER_E_NO_SUCH_PROPERTY ((HRESULT)0x8004173BL)
//
// MessageId: FILTER_S_NO_SECURITY_DESCRIPTOR
//
// MessageText:
//
// The document has no security descriptor.
//
#define FILTER_S_NO_SECURITY_DESCRIPTOR ((HRESULT)0x0004173CL)
//
// Word breaker error codes
//
//
// MessageId: WBREAK_E_END_OF_TEXT
//
// MessageText:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -