亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? ntiologc.h

?? ARM7的一些試驗程序
?? H
字號:
/*++ BUILD Version: 0001    // Increment this if a change has global effects

Copyright (c) 1991  Microsoft Corporation

Module Name:

    ntiologc.h

Abstract:

    Constant definitions for the I/O error code log values.

Author:

    Jeff Havens (jhavens) 21-Aug-1991

Revision History:

--*/

#ifndef _NTIOLOGC_
#define _NTIOLOGC_

//
//  Status 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|       Facility          |               Code            |
//  +---+-+-------------------------+-------------------------------+
//
//  where
//
//      Sev - is the severity code
//
//          00 - Success
//          01 - Informational
//          10 - Warning
//          11 - Error
//
//      C - is the Customer code flag
//
//      Facility - is the facility code
//
//      Code - is the facility's status code
//

//
//  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_RPC_STUBS               0x3
#define FACILITY_RPC_RUNTIME             0x2
#define FACILITY_IO_ERROR_CODE           0x4


//
// Define the severity codes
//
#define STATUS_SEVERITY_WARNING          0x2
#define STATUS_SEVERITY_SUCCESS          0x0
#define STATUS_SEVERITY_INFORMATIONAL    0x1
#define STATUS_SEVERITY_ERROR            0x3


//
// MessageId: IO_ERR_RETRY_SUCCEEDED
//
// MessageText:
//
//  A retry was successful on %1.
//
#define IO_ERR_RETRY_SUCCEEDED           ((NTSTATUS)0x00040001L)

//
// MessageId: IO_ERR_INSUFFICIENT_RESOURCES
//
// MessageText:
//
//  The driver could not allocate something necessary for the request for %1.
//
#define IO_ERR_INSUFFICIENT_RESOURCES    ((NTSTATUS)0xC0040002L)

//
// MessageId: IO_ERR_CONFIGURATION_ERROR
//
// MessageText:
//
//  Driver or device is incorrectly configured for %1.
//
#define IO_ERR_CONFIGURATION_ERROR       ((NTSTATUS)0xC0040003L)

//
// MessageId: IO_ERR_DRIVER_ERROR
//
// MessageText:
//
//  Driver detect an internal error in its data structures for %1.
//
#define IO_ERR_DRIVER_ERROR              ((NTSTATUS)0xC0040004L)

//
// MessageId: IO_ERR_PARITY
//
// MessageText:
//
//  A parity error was detected on %1.
//
#define IO_ERR_PARITY                    ((NTSTATUS)0xC0040005L)

//
// MessageId: IO_ERR_SEEK_ERROR
//
// MessageText:
//
//  The device, %1, had a seek error.
//
#define IO_ERR_SEEK_ERROR                ((NTSTATUS)0xC0040006L)

//
// MessageId: IO_ERR_BAD_BLOCK
//
// MessageText:
//
//  The device, %1, has a bad block.
//
#define IO_ERR_BAD_BLOCK                 ((NTSTATUS)0xC0040007L)

//
// MessageId: IO_ERR_OVERRUN_ERROR
//
// MessageText:
//
//  An overrun occurred on %1.
//
#define IO_ERR_OVERRUN_ERROR             ((NTSTATUS)0xC0040008L)

//
// MessageId: IO_ERR_TIMEOUT
//
// MessageText:
//
//  The device, %1, did not respond within the timeout period.
//
#define IO_ERR_TIMEOUT                   ((NTSTATUS)0xC0040009L)

//
// MessageId: IO_ERR_SEQUENCE
//
// MessageText:
//
//  The driver detected an unexpected sequence by the device, %1.
//
#define IO_ERR_SEQUENCE                  ((NTSTATUS)0xC004000AL)

//
// MessageId: IO_ERR_CONTROLLER_ERROR
//
// MessageText:
//
//  The driver detected a controller error on %1.
//
#define IO_ERR_CONTROLLER_ERROR          ((NTSTATUS)0xC004000BL)

//
// MessageId: IO_ERR_INTERNAL_ERROR
//
// MessageText:
//
//  The driver detected an internal driver error on %1.
//
#define IO_ERR_INTERNAL_ERROR            ((NTSTATUS)0xC004000CL)

//
// MessageId: IO_ERR_INCORRECT_IRQL
//
// MessageText:
//
//  The driver was configured with an incorrect interrupt for %1.
//
#define IO_ERR_INCORRECT_IRQL            ((NTSTATUS)0xC004000DL)

//
// MessageId: IO_ERR_INVALID_IOBASE
//
// MessageText:
//
//  The driver was configured with an invalid I/O base address for %1.
//
#define IO_ERR_INVALID_IOBASE            ((NTSTATUS)0xC004000EL)

//
// MessageId: IO_ERR_NOT_READY
//
// MessageText:
//
//  The device, %1, is not ready for access yet.
//
#define IO_ERR_NOT_READY                 ((NTSTATUS)0xC004000FL)

//
// MessageId: IO_ERR_INVALID_REQUEST
//
// MessageText:
//
//  The request is incorrectly formatted for %1.
//
#define IO_ERR_INVALID_REQUEST           ((NTSTATUS)0xC0040010L)

//
// MessageId: IO_ERR_VERSION
//
// MessageText:
//
//  The wrong version of the driver has been loaded.
//
#define IO_ERR_VERSION                   ((NTSTATUS)0xC0040011L)

//
// MessageId: IO_ERR_LAYERED_FAILURE
//
// MessageText:
//
//  The driver beneath this one has failed in some way for %1.
//
#define IO_ERR_LAYERED_FAILURE           ((NTSTATUS)0xC0040012L)

//
// MessageId: IO_ERR_RESET
//
// MessageText:
//
//  The device, %1, has been reset.
//
#define IO_ERR_RESET                     ((NTSTATUS)0xC0040013L)

//
// MessageId: IO_ERR_PROTOCOL
//
// MessageText:
//
//  A transport driver received a frame which violated the protocol.
//
#define IO_ERR_PROTOCOL                  ((NTSTATUS)0xC0040014L)

//
// MessageId: IO_ERR_MEMORY_CONFLICT_DETECTED
//
// MessageText:
//
//  A conflict has been detected between two drivers which claimed two overlapping
//  memory regions.
//  Driver %2, with device <%3>, claimed a memory range with starting address
//  in data address 0x28 and 0x2c, and length in data address 0x30.
//
#define IO_ERR_MEMORY_CONFLICT_DETECTED  ((NTSTATUS)0xC0040015L)

//
// MessageId: IO_ERR_PORT_CONFLICT_DETECTED
//
// MessageText:
//
//  A conflict has been detected between two drivers which claimed two overlapping
//  Io port regions.
//  Driver %2, with device <%3>, claimed an IO port range with starting address
//  in data address 0x28 and 0x2c, and length in data address 0x30.
//
#define IO_ERR_PORT_CONFLICT_DETECTED    ((NTSTATUS)0xC0040016L)

//
// MessageId: IO_ERR_DMA_CONFLICT_DETECTED
//
// MessageText:
//
//  A conflict has been detected between two drivers which claimed equivalent DMA
//  channels.
//  Driver %2, with device <%3>, claimed the DMA Channel in data address 0x28, with
//  optinal port in data address 0x2c.
//
#define IO_ERR_DMA_CONFLICT_DETECTED     ((NTSTATUS)0xC0040017L)

//
// MessageId: IO_ERR_IRQ_CONFLICT_DETECTED
//
// MessageText:
//
//  A conflict has been detected between two drivers which claimed equivalent IRQs.
//  Driver %2, with device <%3>, claimed an interrupt with Level in data address
//  0x28, vector in data address 0x2c and Affinity in data address 0x30.
//
#define IO_ERR_IRQ_CONFLICT_DETECTED     ((NTSTATUS)0xC0040018L)

//
// MessageId: IO_ERR_BAD_FIRMWARE
//
// MessageText:
//
//  The driver has detected a device with old or out-of-date firmware.  The
//  device will not be used.
//
#define IO_ERR_BAD_FIRMWARE              ((NTSTATUS)0xC0040019L)

//
// MessageId: IO_WRN_BAD_FIRMWARE
//
// MessageText:
//
//  The driver has detected that device %1 has old or out-of-date firmware.
//  Reduced performance may result.
//
#define IO_WRN_BAD_FIRMWARE              ((NTSTATUS)0x8004001AL)

//
// MessageId: IO_ERR_DMA_RESOURCE_CONFLICT
//
// MessageText:
//
//  The device could not allocate one or more required resources due to conflicts
//  with other devices.  The device DMA setting of '%2' could not be
//  satisified due to a conflict with Driver '%3'.
//
#define IO_ERR_DMA_RESOURCE_CONFLICT     ((NTSTATUS)0xC004001BL)

//
// MessageId: IO_ERR_INTERRUPT_RESOURCE_CONFLICT
//
// MessageText:
//
//  The device could not allocate one or more required resources due to conflicts
//  with other devices.  The device interrupt setting of '%2' could not be
//  satisified due to a conflict with Driver '%3'.
//
#define IO_ERR_INTERRUPT_RESOURCE_CONFLICT ((NTSTATUS)0xC004001CL)

//
// MessageId: IO_ERR_MEMORY_RESOURCE_CONFLICT
//
// MessageText:
//
//  The device could not allocate one or more required resources due to conflicts
//  with other devices.  The device memory setting of '%2' could not be
//  satisified due to a conflict with Driver '%3'.
//
#define IO_ERR_MEMORY_RESOURCE_CONFLICT  ((NTSTATUS)0xC004001DL)

//
// MessageId: IO_ERR_PORT_RESOURCE_CONFLICT
//
// MessageText:
//
//  The device could not allocate one or more required resources due to conflicts
//  with other devices.  The device port setting of '%2' could not be
//  satisified due to a conflict with Driver '%3'.
//
#define IO_ERR_PORT_RESOURCE_CONFLICT    ((NTSTATUS)0xC004001EL)

//
// MessageId: IO_BAD_BLOCK_WITH_NAME
//
// MessageText:
//
//  The file %2 on device %1 contains a bad disk block.
//
#define IO_BAD_BLOCK_WITH_NAME           ((NTSTATUS)0xC004001FL)

//
// MessageId: IO_WRITE_CACHE_ENABLED
//
// MessageText:
//
//  The driver detected that the device %1 has its write cache enabled. Data corruption
//  may occur.
//
#define IO_WRITE_CACHE_ENABLED           ((NTSTATUS)0x80040020L)

//
// MessageId: IO_RECOVERED_VIA_ECC
//
// MessageText:
//
//  Data was recovered using error correction code on device %1.
//
#define IO_RECOVERED_VIA_ECC             ((NTSTATUS)0x80040021L)

//
// MessageId: IO_WRITE_CACHE_DISABLED
//
// MessageText:
//
//  The driver disabled the write cache on device %1.
//
#define IO_WRITE_CACHE_DISABLED          ((NTSTATUS)0x80040022L)

//
// MessageId: IO_FILE_QUOTA_THRESHOLD
//
// MessageText:
//
//  A user hit their quota threshold on device %1.
//
#define IO_FILE_QUOTA_THRESHOLD          ((NTSTATUS)0x40040024L)

//
// MessageId: IO_FILE_QUOTA_LIMIT
//
// MessageText:
//
//  A user hit their quota limit on device %1.
//
#define IO_FILE_QUOTA_LIMIT              ((NTSTATUS)0x80040025L)

//
// MessageId: IO_FILE_QUOTA_STARTED
//
// MessageText:
//
//  The system has started rebuilding the user disk quota information on
//  device %1 with label "%2".
//
#define IO_FILE_QUOTA_STARTED            ((NTSTATUS)0x40040026L)

//
// MessageId: IO_FILE_QUOTA_SUCCEEDED
//
// MessageText:
//
//  The system has successfully rebuilt the user disk quota information on
//  device %1 with label "%2".
//
#define IO_FILE_QUOTA_SUCCEEDED          ((NTSTATUS)0x00040027L)

//
// MessageId: IO_FILE_QUOTA_FAILED
//
// MessageText:
//
//  The system has encounted an error rebuilding the user disk quota
//  information on device %1 with label "%2".
//
#define IO_FILE_QUOTA_FAILED             ((NTSTATUS)0x80040028L)

//
// MessageId: IO_FILE_SYSTEM_CORRUPT
//
// MessageText:
//
//  The file system structure on the disk is corrupt and unusable.
//  Please run the chkdsk utility on the device %1 with label "%2".
//
#define IO_FILE_SYSTEM_CORRUPT           ((NTSTATUS)0xC0040029L)

//
// MessageId: IO_FILE_QUOTA_CORRUPT
//
// MessageText:
//
//  The user disk quota information disk is corrupt and unusable.
//  The file system quota information on the device %1 with label "%2" will
//  be rebuilt.
//
#define IO_FILE_QUOTA_CORRUPT            ((NTSTATUS)0xC004002AL)

#endif /* _NTIOLOGC_ */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲国产裸拍裸体视频在线观看乱了 | 欧美国产精品一区二区| 亚洲另类色综合网站| 久久福利资源站| 欧美人伦禁忌dvd放荡欲情| 国产欧美一区二区精品性色| 日韩精品午夜视频| 欧美在线不卡视频| 日韩美女视频一区二区| 国产高清精品久久久久| 日韩女同互慰一区二区| 亚洲午夜羞羞片| 色综合激情久久| 国产精品五月天| 国产成人精品三级麻豆| 日韩欧美二区三区| 蜜桃久久久久久| 777色狠狠一区二区三区| 亚洲综合一区二区三区| 色综合久久久久综合99| 日韩美女精品在线| 91网站黄www| 亚洲男人的天堂在线观看| av日韩在线网站| 中文字幕在线观看不卡视频| 成人黄色在线网站| 国产精品进线69影院| aaa国产一区| 亚洲欧美色综合| 在线观看免费亚洲| 一区二区三区日韩精品视频| 在线观看三级视频欧美| 亚洲综合久久久| 欧美色爱综合网| 亚洲成av人片在www色猫咪| 欧美日韩大陆一区二区| 日韩激情中文字幕| 日韩美女一区二区三区四区| 国产一区二区视频在线播放| 久久久久久9999| 成人精品一区二区三区四区| 最新久久zyz资源站| 欧美在线一区二区三区| 性做久久久久久| 精品黑人一区二区三区久久| 国产成人无遮挡在线视频| 国产精品第四页| 欧美色综合影院| 久久99国产精品久久99| 国产日韩亚洲欧美综合| 色综合网色综合| 日韩精品视频网站| 中文字幕不卡三区| 欧美三片在线视频观看| 国产一区欧美一区| 亚洲乱码日产精品bd| 69精品人人人人| 精品一区二区三区免费播放| 日韩一区欧美小说| 67194成人在线观看| 国产盗摄视频一区二区三区| 亚洲美女在线国产| 日韩精品一区二区三区在线观看| 国产成人三级在线观看| 亚洲一区在线观看视频| 久久综合狠狠综合| 91免费版pro下载短视频| 蜜臀a∨国产成人精品| 国产精品久久久久天堂| 欧美一区二区高清| 色综合久久中文字幕综合网| 蜜臀av亚洲一区中文字幕| 亚洲欧洲性图库| 精品久久久久久久久久久院品网| 91视频在线观看| 国产一区在线视频| 天堂午夜影视日韩欧美一区二区| 日本一区二区高清| 日韩一区二区三区观看| 91网站最新地址| 国产成人在线影院| 免费欧美高清视频| 亚洲精品视频免费观看| 国产午夜精品在线观看| 日韩一区二区三区视频在线观看| 日本韩国视频一区二区| 国产91精品精华液一区二区三区| 日本中文字幕一区二区有限公司| 综合在线观看色| 亚洲国产高清在线观看视频| 欧美变态口味重另类| 91.com在线观看| 欧美系列在线观看| 在线欧美一区二区| 91污片在线观看| 99久精品国产| 成人av动漫在线| 粉嫩aⅴ一区二区三区四区五区| 美日韩一区二区三区| 日韩av中文字幕一区二区三区| 亚洲午夜国产一区99re久久| 亚洲乱码国产乱码精品精98午夜| 国产精品电影一区二区| 国产精品天天摸av网| 国产色婷婷亚洲99精品小说| 欧美不卡在线视频| 欧美精品一区二区三区蜜桃 | 99re成人在线| 成人sese在线| 91网上在线视频| 色视频成人在线观看免| 91国内精品野花午夜精品| 97精品久久久久中文字幕| 99视频国产精品| 91老师国产黑色丝袜在线| 99re亚洲国产精品| 欧美天天综合网| 日韩一区二区不卡| 欧美大片在线观看一区| 精品国产乱码久久久久久图片| 久久免费看少妇高潮| 国产精品色在线| 最新欧美精品一区二区三区| 亚洲精品国产视频| 午夜视频在线观看一区二区 | 午夜电影久久久| 天堂成人免费av电影一区| 日本亚洲三级在线| 久草精品在线观看| 成人的网站免费观看| 色老汉一区二区三区| 欧美日韩亚洲综合在线| 欧美一区二区三区在线电影 | 成人av资源在线观看| av不卡免费在线观看| 欧美日韩国产经典色站一区二区三区| 欧美卡1卡2卡| 久久久久国产精品免费免费搜索| 国产精品色一区二区三区| 亚洲免费观看高清| 免费久久精品视频| 成人综合在线观看| 欧美日韩在线亚洲一区蜜芽| 欧美tickling挠脚心丨vk| 国产精品久久午夜| 日韩中文字幕区一区有砖一区 | 久久成人久久鬼色| 成人动漫一区二区在线| 欧美精品aⅴ在线视频| 国产丝袜欧美中文另类| 亚洲美女视频在线观看| 久久精品国产精品亚洲红杏| 波多野结衣欧美| 日韩一二三四区| 自拍视频在线观看一区二区| 蜜桃久久久久久| 在线中文字幕一区| 久久精品男人天堂av| 亚洲一区二区在线观看视频| 国产麻豆9l精品三级站| 在线观看91精品国产入口| 久久久不卡网国产精品二区| 亚洲福利视频一区| 成人午夜视频网站| 日韩免费观看高清完整版在线观看 | 美日韩一区二区| 欧美性受极品xxxx喷水| 国产精品污污网站在线观看| 麻豆91免费看| 欧美日韩国产不卡| 亚洲黄色av一区| 大桥未久av一区二区三区中文| 亚洲电影你懂得| 99精品视频一区| 国产目拍亚洲精品99久久精品| 美女在线一区二区| 欧美精品一二三四| 亚洲国产精品天堂| 91在线无精精品入口| 国产目拍亚洲精品99久久精品| 久久av中文字幕片| 日韩免费在线观看| 蜜桃久久精品一区二区| 欧美久久久久久久久久| 亚洲午夜久久久久久久久久久 | 亚洲一区二区三区自拍| 91丨国产丨九色丨pron| 自拍偷拍国产亚洲| 91亚洲精华国产精华精华液| 国产精品萝li| caoporm超碰国产精品| 亚洲国产高清在线| 国产成人鲁色资源国产91色综| 久久在线观看免费| 国产精品亚洲一区二区三区妖精 | 一区二区三区91| 欧美三区在线视频| 天天综合日日夜夜精品| 欧美精品久久99| 日日夜夜精品免费视频|