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

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

?? opcerror.pas

?? DELPHI編寫OPC(一): 編寫OPC客戶端程序
?? PAS
字號:

{*******************************************************}
{                                                       }
{       OPC status and error codes                      }
{                                                       }
{       Delphi conversion generated and supplied by     }
{       Mike Dillamore                                  }
{       OPC Programmers' Connection                     }
{       http://www.opcconnect.com/                      }
{       mailto:opc@opcconnect.com                       }
{                                                       }
{*******************************************************}

unit OpcError;

{
Module Name:
    OpcError.h
Author:
    OPC Task Force
Revision History:
Release 1.0A
    Removed Unused messages
    Added OPC_S_INUSE, OPC_E_INVALIDCONFIGFILE, OPC_E_NOTFOUND
Release 2.0
    Added OPC_E_INVALID_PID
Release 3.0
    Added new error codes for DA3.0
    Added error codes for complex data

Module Name:
    opcae_er.h
Author:
    Jim Luth - OPC Alarm & Events Committee
Revision History:

Module Name:
    OpcHDAError.h
Author:
    Ayana Craven, OSI Software, Inc.
Revision History:

Module Name:
    OpcErrSec.h
Author:
    OPC Security Task Force
Revision History:
Release 1.0 08/18/00
    OPC security HRESULTs
}

{
Code Assignements:
  0000 to 0200 are reserved for Microsoft use
  (although some were inadverdantly used for OPC Data Access 1.0 errors).
  0200 to 7FFF are reserved for future OPC use.
  8000 to FFFF can be vendor specific.
}

interface

uses
  Windows;

const

  //
  //  Values are 32 bit values laid 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
  //

  // OPC Data Access

  //
  // MessageId: OPC_E_INVALIDHANDLE
  //
  // MessageText:
  //
  //  The value of the handle is invalid.
  //
  OPC_E_INVALIDHANDLE = HResult($C0040001);

  //
  // MessageId: OPC_E_BADTYPE
  //
  // MessageText:
  //
  //  The server cannot convert the data between the
  //  requested data type and the canonical data type.
  //
  OPC_E_BADTYPE = HResult($C0040004);

  //
  // MessageId: OPC_E_PUBLIC
  //
  // MessageText:
  //
  //  The requested operation cannot be done on a public group.
  //
  OPC_E_PUBLIC = HResult($C0040005);

  //
  // MessageId: OPC_E_BADRIGHTS
  //
  // MessageText:
  //
  //  The Items AccessRights do not allow the operation.
  //
  OPC_E_BADRIGHTS = HResult($C0040006);

  //
  // MessageId: OPC_E_UNKNOWNITEMID
  //
  // MessageText:
  //
  //  The item is no longer available in the server address space.
  //
  OPC_E_UNKNOWNITEMID = HResult($C0040007);

  //
  // MessageId: OPC_E_INVALIDITEMID
  //
  // MessageText:
  //
  //  The item definition doesn't conform to the server's syntax.
  //
  OPC_E_INVALIDITEMID = HResult($C0040008);

  //
  // MessageId: OPC_E_INVALIDFILTER
  //
  // MessageText:
  //
  //  The filter string was not valid.
  //
  OPC_E_INVALIDFILTER = HResult($C0040009);

  //
  // MessageId: OPC_E_UNKNOWNPATH
  //
  // MessageText:
  //
  //  The item's access path is not known to the server.
  //
  OPC_E_UNKNOWNPATH = HResult($C004000A);

  //
  // MessageId: OPC_E_RANGE
  //
  // MessageText:
  //
  //  The value was out of range.
  //
  OPC_E_RANGE = HResult($C004000B);

  //
  // MessageId: OPC_E_DUPLICATENAME
  //
  // MessageText:
  //
  //  Duplicate name not allowed.
  //
  OPC_E_DUPLICATENAME = HResult($C004000C);

  //
  // MessageId: OPC_S_UNSUPPORTEDRATE
  //
  // MessageText:
  //
  //  The server does not support the requested data rate
  //  but will use the closest available rate.
  //
  OPC_S_UNSUPPORTEDRATE = HResult($0004000D);

  //
  // MessageId: OPC_S_CLAMP
  //
  // MessageText:
  //
  //  A value passed to WRITE was accepted but the output was clamped.
  //
  OPC_S_CLAMP = HResult($0004000E);

  //
  // MessageId: OPC_S_INUSE
  //
  // MessageText:
  //
  //  The operation cannot be completed because the
  //  object still has references that exist.
  //
  OPC_S_INUSE = HResult($0004000F);

  //
  // MessageId: OPC_E_INVALIDCONFIGFILE
  //
  // MessageText:
  //
  //  The server's configuration file is an invalid format.
  //
  OPC_E_INVALIDCONFIGFILE = HResult($C0040010);

  //
  // MessageId: OPC_E_NOTFOUND
  //
  // MessageText:
  //
  //  The server could not locate the requested object.
  //
  OPC_E_NOTFOUND = HResult($C0040011);

  //
  // MessageId: OPC_E_INVALID_PID
  //
  // MessageText:
  //
  //  The server does not recognise the passed property ID.
  //
  OPC_E_INVALID_PID = HResult($C0040203);

  //
  // MessageId: OPC_E_DEADBANDNOTSET
  //
  // MessageText:
  //
  //  The item deadband has not been set for this item.
  //
  OPC_E_DEADBANDNOTSET = HResult($C0040400);

  //
  // MessageId: OPC_E_DEADBANDNOTSUPPORTED
  //
  // MessageText:
  //
  //  The item does not support deadband.
  //
  OPC_E_DEADBANDNOTSUPPORTED = HResult($C0040401);

  //
  // MessageId: OPC_E_NOBUFFERING
  //
  // MessageText:
  //
  //  The server does not support buffering of data items that are collected at
  //  a faster rate than the group update rate.
  //
  OPC_E_NOBUFFERING = HResult($C0040402);

  //
  // MessageId: OPC_E_INVALIDCONTINUATIONPOINT
  //
  // MessageText:
  //
  //  The continuation point is not valid.
  //
  OPC_E_INVALIDCONTINUATIONPOINT = HResult($C0040403);

  //
  // MessageId: OPC_S_DATAQUEUEOVERFLOW
  //
  // MessageText:
  //
  //  Data Queue Overflow - Some value transitions were lost.
  //
  OPC_S_DATAQUEUEOVERFLOW = HResult($00040404);

  //
  // MessageId: OPC_E_RATENOTSET
  //
  // MessageText:
  //
  //  Server does not support requested rate.
  //
  OPC_E_RATENOTSET = HResult($C0040405);

  //
  // MessageId: OPC_E_NOTSUPPORTED
  //
  // MessageText:
  //
  //  The server does not support writing of quality and/or timestamp.
  //
  OPC_E_NOTSUPPORTED = HResult($C0040406);

  //
  // MessageId: OPCCPX_E_TYPE_CHANGED
  //
  // MessageText:
  //
  //  The dictionary and/or type description for the item has changed.
  //
  OPCCPX_E_TYPE_CHANGED = HResult($C0040407);

  //
  // MessageId: OPCCPX_E_FILTER_DUPLICATE
  //
  // MessageText:
  //
  //  A data filter item with the specified name already exists.
  //
  OPCCPX_E_FILTER_DUPLICATE = HResult($C0040408);

  //
  // MessageId: OPCCPX_E_FILTER_INVALID
  //
  // MessageText:
  //
  //  The data filter value does not conform to the server's syntax.
  //
  OPCCPX_E_FILTER_INVALID = HResult($C0040409);

  //
  // MessageId: OPCCPX_E_FILTER_ERROR
  //
  // MessageText:
  //
  //  An error occurred when the filter value was applied to the source data.
  //
  OPCCPX_E_FILTER_ERROR = HResult($C004040A);

  //
  // MessageId: OPCCPX_S_FILTER_NO_DATA
  //
  // MessageText:
  //
  //  The item value is empty because the data filter has excluded all fields.
  //
  OPCCPX_S_FILTER_NO_DATA = HResult($0004040B);

  // OPC Alarms & Events

  //
  // MessageId: OPC_S_ALREADYACKED
  //
  // MessageText:
  //
  //  The condition has already been acknowleged
  //
  OPC_S_ALREADYACKED = HResult($00040200);

  //
  // MessageId: OPC_S_INVALIDBUFFERTIME
  //
  // MessageText:
  //
  //  The buffer time parameter was invalid
  //
  OPC_S_INVALIDBUFFERTIME = HResult($00040201);

  //
  // MessageId: OPC_S_INVALIDMAXSIZE
  //
  // MessageText:
  //
  //  The max size parameter was invalid
  //
  OPC_S_INVALIDMAXSIZE = HResult($00040202);

  //
  // MessageId: OPC_S_INVALIDKEEPALIVETIME
  //
  // MessageText:
  //
  //  The KeepAliveTime parameter was invalid
  //
  OPC_S_INVALIDKEEPALIVETIME = HResult($00040203);

  //
  // MessageId: OPC_E_INVALIDBRANCHNAME
  //
  // MessageText:
  //
  //  The string was not recognized as an area name
  //
  OPC_E_INVALIDBRANCHNAME = HResult($C0040203);

  //
  // MessageId: OPC_E_INVALIDTIME
  //
  // MessageText:
  //
  //  The time does not match the latest active time
  //
  OPC_E_INVALIDTIME = HResult($C0040204);

  //
  // MessageId: OPC_E_BUSY
  //
  // MessageText:
  //
  //  A refresh is currently in progress
  //
  OPC_E_BUSY = HResult($C0040205);

  //
  // MessageId: OPC_E_NOINFO
  //
  // MessageText:
  //
  //  Information is not available
  //
  OPC_E_NOINFO = HResult($C0040206);

  // OPC Historical Data Access

  //
  // MessageId: OPC_E_MAXEXCEEDED
  //
  // MessageText:
  //
  //  The maximum number of values requested exceeds the server's limit.
  //
  OPC_E_MAXEXCEEDED = HResult($C0041001);

  //
  // MessageId: OPC_S_NODATA
  //
  // MessageText:
  //
  //  There is no data within the specified parameters
  //
  OPC_S_NODATA = HResult($40041002);

  //
  // MessageId: OPC_S_MOREDATA
  //
  // MessageText:
  //
  // There is more data satisfying the query than was returned
  //
  OPC_S_MOREDATA = HResult($40041003);

  //
  // MessageId: OPC_E_INVALIDAGGREGATE
  //
  // MessageText:
  //
  //  The aggregate requested is not valid.
  //
  OPC_E_INVALIDAGGREGATE = HResult($C0041004);

  //
  // MessageId: OPC_S_CURRENTVALUE
  //
  // MessageText:
  //
  //  The server only returns current values for the requested item attributes.
  //
  OPC_S_CURRENTVALUE = HResult($40041005);

  //
  // MessageId: OPC_S_EXTRADATA
  //
  // MessageText:
  //
  //  Additional data satisfying the query was found.
  //
  OPC_S_EXTRADATA = HResult($40041006);

  //
  // MessageId: OPC_W_NOFILTER
  //
  // MessageText:
  //
  //  The server does not support this filter.
  //
  OPC_W_NOFILTER = HResult($80041007);

  //
  // MessageId: OPC_E_UNKNOWNATTRID
  //
  // MessageText:
  //
  //  The server does not support this attribute.
  //
  OPC_E_UNKNOWNATTRID = HResult($C0041008);

  //
  // MessageId: OPC_E_NOT_AVAIL
  //
  // MessageText:
  //
  //  The requested aggregate is not available for the specified item.
  //
  OPC_E_NOT_AVAIL = HResult($C0041009);

  //
  // MessageId: OPC_E_INVALIDDATATYPE
  //
  // MessageText:
  //
  //  The supplied value for the attribute is not a correct data type.
  //
  OPC_E_INVALIDDATATYPE = HResult($C004100A);

  //
  // MessageId: OPC_E_DATAEXISTS
  //
  // MessageText:
  //
  //  Unable to insert - data already present.
  //
  OPC_E_DATAEXISTS = HResult($C004100B);

  //
  // MessageId: OPC_E_INVALIDATTRID
  //
  // MessageText:
  //
  //  The supplied attribute ID is not valid.
  //
  OPC_E_INVALIDATTRID = HResult($C004100C);

  //
  // MessageId: OPC_E_NODATAEXISTS
  //
  // MessageText:
  //
  //  The server has no value for the specified time and item ID.
  //
  OPC_E_NODATAEXISTS = HResult($C004100D);

  //
  // MessageId: OPC_S_INSERTED
  //
  // MessageText:
  //
  //  The requested insert occurred.
  //
  OPC_S_INSERTED = HResult($4004100E);

  //
  // MessageId: OPC_S_REPLACED
  //
  // MessageText:
  //
  //  The requested replace occurred.
  //
  OPC_S_REPLACED = HResult($4004100F);

  // OPC Security

  //
  // MessageId: OPC_E_PRIVATE_ACTIVE
  //
  // MessageText:
  //
  //  OPC Security: A session using private OPC credentials is already active.
  //
  OPC_E_PRIVATE_ACTIVE = HResult($C0040301);

  //
  // MessageId: OPC_E_LOW_IMPERS_LEVEL
  //
  // MessageText:
  //
  //  OPC Security: Server requires higher impersonation level to access secured
  //  data.
  //
  OPC_E_LOW_IMPERS_LEVEL = HResult($C0040302);

  //
  // MessageId: OPC_S_LOW_AUTHN_LEVEL
  //
  // MessageText:
  //
  //  OPC Security: Server expected higher level of package privacy.
  //
  OPC_S_LOW_AUTHN_LEVEL = HResult($00040303);

implementation

end.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美午夜不卡视频| 亚洲宅男天堂在线观看无病毒| 久久青草国产手机看片福利盒子| 成人午夜大片免费观看| 色综合久久88色综合天天| 日韩精品一区二区三区在线| 国产精品成人在线观看| 亚洲成av人片在线| 成人免费高清视频在线观看| 欧美一区二区三区精品| 亚洲免费毛片网站| 成人avav影音| 久久综合久久综合亚洲| 日韩成人dvd| 欧美丝袜第三区| 一区二区三区鲁丝不卡| 成人黄色片在线观看| 欧美精品一区二区三区很污很色的 | 91.com在线观看| 国产精品福利一区| 国产成人免费av在线| 777色狠狠一区二区三区| 国产精品国产三级国产aⅴ无密码| 国产精品二区一区二区aⅴ污介绍| 国产农村妇女毛片精品久久麻豆| 欧美国产精品中文字幕| 国产一区在线观看视频| 欧美男女性生活在线直播观看| 日韩视频一区在线观看| 亚洲高清在线精品| 91久久精品午夜一区二区| 国产精品天美传媒| 国产成人久久精品77777最新版本 国产成人鲁色资源国产91色综 | 欧美一a一片一级一片| 亚洲欧美中日韩| youjizz国产精品| 亚洲色欲色欲www| 一本大道av伊人久久综合| 亚洲品质自拍视频| 99精品视频在线播放观看| 综合久久综合久久| 色综合视频一区二区三区高清| 欧美电影一区二区| 爽好多水快深点欧美视频| 91丨porny丨户外露出| 亚洲色图视频免费播放| 欧美性高清videossexo| 婷婷中文字幕综合| 91精品国产综合久久精品图片| 中文一区在线播放| 91视频一区二区三区| 亚洲国产精品天堂| 88在线观看91蜜桃国自产| 免费日韩伦理电影| 久久精品一级爱片| 91丨porny丨国产入口| 天天色图综合网| 欧美精品一区二区三区在线播放| 一区二区三区四区五区视频在线观看| 免费人成黄页网站在线一区二区| 国产 欧美在线| 一区二区三区四区激情| 制服丝袜激情欧洲亚洲| 国模一区二区三区白浆| 国产欧美精品一区二区色综合 | 亚洲视频在线一区观看| 欧美日韩卡一卡二| 国产jizzjizz一区二区| 日韩美女视频19| 欧美一区二区三区视频在线| 国产一区二区三区观看| 亚洲男同1069视频| 欧美大胆人体bbbb| 91传媒视频在线播放| 久久99热这里只有精品| 亚洲视频一区在线| 久久久综合视频| 欧美日韩在线免费视频| 国产福利精品导航| 三级欧美在线一区| 国产精品国产三级国产三级人妇 | 91色九色蝌蚪| 精品一区二区三区视频在线观看| 91激情在线视频| 国模套图日韩精品一区二区| 综合色天天鬼久久鬼色| 久久青草欧美一区二区三区| 欧美日韩一区精品| 色又黄又爽网站www久久| 韩国女主播成人在线观看| 亚洲一二三区在线观看| 国产精品―色哟哟| 欧美va亚洲va| 7777精品伊人久久久大香线蕉最新版 | 日韩欧美一二三| 欧美性感一类影片在线播放| 成人黄色小视频| 国产精品一区二区三区网站| 日韩一区精品字幕| 一个色综合av| 国产精品国产三级国产a| 日本一区二区在线不卡| 26uuu亚洲婷婷狠狠天堂| 欧美日韩精品一区二区三区| 色噜噜夜夜夜综合网| 风间由美一区二区三区在线观看| 欧美国产日韩在线观看| 精品国产自在久精品国产| 6080日韩午夜伦伦午夜伦| 成人在线综合网站| 懂色中文一区二区在线播放| 国产丶欧美丶日本不卡视频| 国产毛片精品视频| 国产电影一区二区三区| 国产一区二区在线观看免费| 免费在线观看一区| 天堂av在线一区| 三级欧美在线一区| 日韩电影一区二区三区四区| 婷婷国产v国产偷v亚洲高清| 亚洲一区二区三区中文字幕在线| 欧美日韩一区二区在线观看视频| 全部av―极品视觉盛宴亚洲| 免费人成精品欧美精品| 日韩精品91亚洲二区在线观看| 国产日韩欧美制服另类| 欧美高清在线一区| 亚洲欧美一区二区视频| 一区二区三区av电影| 亚洲成va人在线观看| 日本人妖一区二区| 粉嫩av一区二区三区| 99re热视频这里只精品| 91高清视频在线| 欧美日韩一区二区欧美激情| 日韩欧美在线123| 国产天堂亚洲国产碰碰| 中文字幕在线不卡| 国产精品超碰97尤物18| 亚洲精品欧美专区| 免费成人美女在线观看.| 国产乱理伦片在线观看夜一区| 亚洲一级二级在线| 日韩成人免费电影| 国产精品18久久久久久久网站| 亚洲va中文字幕| 久久草av在线| aa级大片欧美| 欧美一区永久视频免费观看| 久久久国产精品麻豆| 亚洲大片精品永久免费| 激情五月播播久久久精品| 97aⅴ精品视频一二三区| 日韩一区二区三区四区| 久久蜜臀中文字幕| 亚洲自拍与偷拍| 国产精品综合一区二区| 在线免费不卡视频| 久久亚洲欧美国产精品乐播| 亚洲一区二区三区精品在线| 国产精品综合一区二区三区| 日本道色综合久久| 久久九九久久九九| 午夜国产精品一区| 成人激情黄色小说| 欧美二区在线观看| 亚洲丝袜另类动漫二区| 国产在线一区二区| 欧美日韩免费在线视频| 国产欧美一区二区在线| 秋霞成人午夜伦在线观看| 91美女在线观看| 欧美一级爆毛片| 亚洲精品视频在线| 成人免费视频免费观看| 日韩西西人体444www| 亚洲成人一区二区| 91免费看`日韩一区二区| 制服丝袜中文字幕一区| 综合久久久久综合| 国产.精品.日韩.另类.中文.在线.播放| 青草国产精品久久久久久| 在线亚洲免费视频| 国产亚洲精品aa午夜观看| 天天影视涩香欲综合网| 欧洲在线/亚洲| 国产精品久久久久7777按摩| 精品亚洲国内自在自线福利| 欧美在线综合视频| 亚洲四区在线观看| 成人午夜视频福利| 国产亚洲欧美一区在线观看| 免费美女久久99| 欧美影院精品一区| 最新中文字幕一区二区三区| 国产一区二区三区免费观看| 精品国产麻豆免费人成网站| 麻豆91精品视频| 欧美日韩aaaaaa| 亚洲成人tv网|