📄 bherr.h
字号:
//=============================================================================
// Microsoft (R) Bloodhound (tm). Copyright (C) 1991-1992.
//
// MODULE: bherr.h
//
// This is the top-level include file for all BLOODHOUND error codes
//=============================================================================
#if !defined(_BHERR_)
#define _BHERR_
//=============================================================================
// The operation succeeded.
//=============================================================================
#define BHERR_SUCCESS 0
//=============================================================================
// An error occured creating a memory-mapped file.
//=============================================================================
#define BHERR_MEMORY_MAPPED_FILE_ERROR 1
//=============================================================================
// The handle to a filter is invalid.
//=============================================================================
#define BHERR_INVALID_HFILTER 2
//=============================================================================
// Capturing has already been started.
//=============================================================================
#define BHERR_CAPTURING 3
//=============================================================================
// Capturing has not been started.
//=============================================================================
#define BHERR_NOT_CAPTURING 4
//=============================================================================
// The are no frames available.
//=============================================================================
#define BHERR_NO_MORE_FRAMES 5
//=============================================================================
// The buffer is too small to complete the operation.
//=============================================================================
#define BHERR_BUFFER_TOO_SMALL 6
//=============================================================================
// No protocol was able to recognize the frame.
//=============================================================================
#define BHERR_FRAME_NOT_RECOGNIZED 7
//=============================================================================
// The file already exists.
//=============================================================================
#define BHERR_FILE_ALREADY_EXISTS 8
//=============================================================================
// A needed device driver was not found or is not loaded.
//=============================================================================
#define BHERR_DRIVER_NOT_FOUND 9
//=============================================================================
// This address aready exists in the database.
//=============================================================================
#define BHERR_ADDRESS_ALREADY_EXISTS 10
//=============================================================================
// The frame handle is invalid.
//=============================================================================
#define BHERR_INVALID_HFRAME 11
//=============================================================================
// The protocol handle is invalid.
//=============================================================================
#define BHERR_INVALID_HPROTOCOL 12
//=============================================================================
// The property handle is invalid.
//=============================================================================
#define BHERR_INVALID_HPROPERTY 13
//=============================================================================
// The the object has been locked.
//=============================================================================
#define BHERR_LOCKED 14
//=============================================================================
// A pop operation was attempted on an empty stack.
//=============================================================================
#define BHERR_STACK_EMPTY 15
//=============================================================================
// A push operation was attempted on an full stack.
//=============================================================================
#define BHERR_STACK_OVERFLOW 16
//=============================================================================
// There are too many protocols active.
//=============================================================================
#define BHERR_TOO_MANY_PROTOCOLS 17
//=============================================================================
// The file was not found.
//=============================================================================
#define BHERR_FILE_NOT_FOUND 18
//=============================================================================
// No memory was available. Shut down windows to free up resources.
//=============================================================================
#define BHERR_OUT_OF_MEMORY 19
//=============================================================================
// The capture is already in the paused state.
//=============================================================================
#define BHERR_CAPTURE_PAUSED 20
//=============================================================================
// There are no buffers available or present.
//=============================================================================
#define BHERR_NO_BUFFERS 21
//=============================================================================
// There are already buffers present.
//=============================================================================
#define BHERR_BUFFERS_ALREADY_EXIST 22
//=============================================================================
// The object is not locked.
//=============================================================================
#define BHERR_NOT_LOCKED 23
//=============================================================================
// A integer type was out of range.
//=============================================================================
#define BHERR_OUT_OF_RANGE 24
//=============================================================================
// An object was locked too many times.
//=============================================================================
#define BHERR_LOCK_NESTING_TOO_DEEP 25
//=============================================================================
// A parser failed to load.
//=============================================================================
#define BHERR_LOAD_PARSER_FAILED 26
//=============================================================================
// A parser failed to unload.
//=============================================================================
#define BHERR_UNLOAD_PARSER_FAILED 27
//=============================================================================
// The address database handle is invalid.
//=============================================================================
#define BHERR_INVALID_HADDRESSDB 28
//=============================================================================
// The MAC address was not found in the database.
//=============================================================================
#define BHERR_ADDRESS_NOT_FOUND 29
//=============================================================================
// The network software was not found in the system.
//=============================================================================
#define BHERR_NETWORK_NOT_PRESENT 30
//=============================================================================
// There is no property database for a protocol.
//=============================================================================
#define BHERR_NO_PROPERTY_DATABASE 31
//=============================================================================
// A property was not found in the database.
//=============================================================================
#define BHERR_PROPERTY_NOT_FOUND 32
//=============================================================================
// The property database handle is in valid.
//=============================================================================
#define BHERR_INVALID_HPROPERTYDB 33
//=============================================================================
// The protocol has not been enabled.
//=============================================================================
#define BHERR_PROTOCOL_NOT_ENABLED 34
//=============================================================================
// The protocol DLL could not be found.
//=============================================================================
#define BHERR_PROTOCOL_NOT_FOUND 35
//=============================================================================
// The parser DLL is not valid.
//=============================================================================
#define BHERR_INVALID_PARSER_DLL 36
//=============================================================================
// There are no properties attached.
//=============================================================================
#define BHERR_NO_ATTACHED_PROPERTIES 37
//=============================================================================
// There are no frames in the buffer.
//=============================================================================
#define BHERR_NO_FRAMES 38
//=============================================================================
// The capture file format is not valid.
//=============================================================================
#define BHERR_INVALID_FILE_FORMAT 39
//=============================================================================
// The OS could not create a temporary file.
//=============================================================================
#define BHERR_COULD_NOT_CREATE_TEMPFILE 40
//=============================================================================
// There is not enough MS-DOS memory available.
//=============================================================================
#define BHERR_OUT_OF_DOS_MEMORY 41
//=============================================================================
// There are no protocols enabled.
//=============================================================================
#define BHERR_NO_PROTOCOLS_ENABLED 42
//=============================================================================
// The MAC type is invalid or unsupported.
//=============================================================================
#define BHERR_UNKNOWN_MACTYPE 46
//=============================================================================
// There is no routing information present in the MAC frame.
//=============================================================================
#define BHERR_ROUTING_INFO_NOT_PRESENT 47
//=============================================================================
// The network handle is invalid.
//=============================================================================
#define BHERR_INVALID_HNETWORK 48
//=============================================================================
// The network is already open.
//=============================================================================
#define BHERR_NETWORK_ALREADY_OPENED 49
//=============================================================================
// The network is not open.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -