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

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

?? cerrors.h

?? Open DMT Client C Source code
?? H
字號:
// ----------------------------------------------------------------------------// Copyright 2006-2007, Martin D. Flynn// All rights reserved// ----------------------------------------------------------------------------//// Licensed under the Apache License, Version 2.0 (the "License");// you may not use this file except in compliance with the License.// You may obtain a copy of the License at// // http://www.apache.org/licenses/LICENSE-2.0// // Unless required by applicable law or agreed to in writing, software// distributed under the License is distributed on an "AS IS" BASIS,// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.// See the License for the specific language governing permissions and// limitations under the License.//// ----------------------------------------------------------------------------// Description://  Client error codes// ---// Change History://  2006/01/04  Martin D. Flynn//      Initial release//  2006/01/14  Martin D. Flynn//      Changed "ERROR_GPS_EXPIRED" from 0xF411 to 0xF911//      Changed "ERROR_GPS_FAILURE" from 0xF412 to 0xF912//      Added "ERROR_UPLOAD_XXXXX" error codes to 0xF4XX block// ----------------------------------------------------------------------------#ifndef _CERRORS_H#define _CERRORS_H// ----------------------------------------------------------------------------// Reserved Error codes: (client to server) [00-00 and E0-00 through FF-FF]// ----------------------------------------------------------------------------enum ClientErrors_enum {// ----------------------------------------------------------------------------// Protocol/Packet errors (data provides specifics):    ERROR_PACKET_HEADER                  = 0xF111,    // Description:    //      Invalid packet header    // Payload:    //      0:2 - This error code    //      2:1 - Packet header causing error (if available)    //      3:1 - Packet type causing error (if available)    // Notes:    //      Sent to server when the packet header is not recognized.        ERROR_PACKET_TYPE                    = 0xF112,    // Description:    //      Invalid packet type    // Payload:    //      0:2 - This error code    //      2:1 - Packet header causing error    //      3:1 - Packet type causing error    // Notes:    //      Sent to server when the packet type is not recognized.    ERROR_PACKET_LENGTH                  = 0xF113,    // Description:    //      Invalid packet length    // Payload:    //      0:2 - This error code    //      2:1 - Packet header causing error (if available)    //      3:1 - Packet type causing error (if available)    // Notes:    //      Sent to server when the packet length is invalid.    ERROR_PACKET_ENCODING                = 0xF114,    // Description:    //      Invalid/unsupported packet encoding    // Payload:    //      0:2 - This error code    //      2:1 - Packet header causing error (if available)    //      3:1 - Packet type causing error (if available)    // Notes:    //      Sent to server when the packet encoding is not supported by the client.    ERROR_PACKET_PAYLOAD                 = 0xF115,    // Description:    //      Invalid packet payload    // Payload:    //      0:2 - This error code    //      2:1 - Packet header causing error    //      3:1 - Packet type causing error    // Notes:    //      Sent to server when the packet payload is invalid.    ERROR_PACKET_CHECKSUM                = 0xF116,    // Description:    //      Invalid packet checksum (ASCII encoding only)    // Payload:    //      0:2 - This error code    //      2:1 - Packet header causing error (if available)    //      3:1 - Packet type causing error (if available)    // Notes:    //      Sent to server when the packet checksum appears to be invalid.    //      This can only occur for ASCII encoded packets.    ERROR_PACKET_ACK                     = 0xF117,    // Description:    //      Packet ACK sequence invalid    // Payload:    //      0:2 - This error code    //      2:1 - Packet header causing error    //      3:1 - Packet type causing error    // Notes:    //      Sent to server when the packet ACK sequence number was not found    //      in the list of sent/unacknowledged event packets.    ERROR_PROTOCOL_ERROR                 = 0xF121,    // Description:    //      Protocol error    // Payload:    //      0:2 - This error code    //      2:1 - Packet header causing error    //      3:1 - Packet type causing error    // Notes:    //      Sent to server when the client does not receive an expected    //      response from the server.// ----------------------------------------------------------------------------// Property errors (data provides specifics):    ERROR_PROPERTY_READ_ONLY             = 0xF201,    // Description:    //      Property is read-only    // Payload:    //      0:2 - This error code    //      2:2 - the id of the read-only property    // Notes:    //      Sent to server when an attempt is made to set a read-only property        ERROR_PROPERTY_WRITE_ONLY            = 0xF202,    // Description:    //      Property is write-only    // Payload:    //      0:2 - This error code    //      2:2 - the id of the write-only property    // Notes:    //      Sent to server when an attempt is made to read a write-only property        ERROR_PROPERTY_INVALID_ID            = 0xF211,    // Description:    //      Invalid/unsupported property ID    // Payload:    //      0:2 - This error code    //      2:2 - the id of the unrecognized property    // Notes:    //      Sent to server when an attempt is made to get/set an unrecognized property id        ERROR_PROPERTY_INVALID_VALUE         = 0xF212,    // Description:    //      Invalid property value    // Payload:    //      0:2 - This error code    //      2:2 - the id of the property which is attempting to be get/set    // Notes:    //      Sent to server when a specified value is invalid for the property type        ERROR_PROPERTY_UNKNOWN_ERROR         = 0xF213,    // Description:    //      Invalid property value    // Payload:    //      0:2 - This error code    //      2:2 - the id of the property which has the error    // Notes:    //      Sent to server when an internal client property error was found// ----------------------------------------------------------------------------// Command errors (data provides specifics):    ERROR_COMMAND_INVALID               = 0xF311,    // Description:    //      The specified command is invalid/unsupported    // Payload:    //      0:2 - This error code    //      2:2 - the id of the invalid command.    // Notes:    //      Sent to the server when the client is requested to perform a     //      command which it does not support.    ERROR_COMMAND_ERROR                 = 0xF321,    // Description:    //      The command arguments are invalid, or an execution error was encountered.    // Payload:    //      0:2 - This error code    //      2:2 - the id of the command which had the error    //      4:2 - returned command error    //      6:X - other data which may be useful in diagnosing the error [optional]    // Notes:    //      Sent to the server when the executed client command has found an     //      error either in the command arguments, or in the execution of the command.// ----------------------------------------------------------------------------// Upload errors (data provides specifics):    ERROR_UPLOAD_TYPE                   = 0xF401,    // Description:    //      Invalid speficied upload type    // Payload:    //      0:2 - This error code    // Notes:    //      Sent to the server when the upload record type is not recognized.    ERROR_UPLOAD_LENGTH                 = 0xF411,    // Description:    //      Invalid speficied upload file size (too small/large)    // Payload:    //      0:2 - This error code    // Notes:    //      Sent to the server when the specified data length is too large/small.    ERROR_UPLOAD_OFFSET_OVERLAP         = 0xF412,    // Description:    //      Invalid speficied upload file offset    // Payload:    //      0:2 - This error code    // Notes:    //      Sent to the server when the specified data offset overlaps a previous record.    ERROR_UPLOAD_OFFSET_GAP             = 0xF413,    // Description:    //      Invalid speficied upload file offset    // Payload:    //      0:2 - This error code    // Notes:    //      Sent to the server when the specified data offset leaves a gap between this    //      and the previous record.    ERROR_UPLOAD_OFFSET_OVERFLOW        = 0xF414,    // Description:    //      Invalid speficied upload file offset    // Payload:    //      0:2 - This error code    // Notes:    //      Sent to the server when the specified data offset and the length of the    //      provided data exceeds the previously specified length of the file.    ERROR_UPLOAD_FILE_NAME              = 0xF421,    // Description:    //      Invalid speficied upload file name    // Payload:    //      0:2 - This error code    // Notes:    //      Sent to the server when the specified filename is invalid.    ERROR_UPLOAD_CHECKSUM               = 0xF431,    // Description:    //      Invalid speficied upload checksum    // Payload:    //      0:2 - This error code    // Notes:    //      Sent to the server when the specified checksum value is invalid.    ERROR_UPLOAD_SAVE                   = 0xF441,    // Description:    //      Error saving upload file    // Payload:    //      0:2 - This error code    //      2:X - Additional diagnostic information as needed.    // Notes:    //      Sent to the server when the client is unable to save the uploaded    //      file.  Possibly due to some internal client error.// ----------------------------------------------------------------------------// GPS errors (data provides specifics):    ERROR_GPS_EXPIRED                   = 0xF911,    // Description:    //      GPS fix expired (possible antenna problem)    // Payload:    //      0:2 - This error code    //      2:4 - the time of the last valid fix    // Notes:    //      Sent to server when the client has determined that a new GPS    //      fix has not bee aquired in the expected time frame (as specified    //      by the property PROP_GPS_EXPIRATION).  This typically means that    //      either the device is not in an area where a GPS fix is possible,    //      or that there may be a problem with the GPS antenna.    ERROR_GPS_FAILURE                   = 0xF912,    // Description:    //      Lost communication with GPS module (possible module problem)    // Payload:    //      0:2 - This error code    //      2:4 - the time of the last GPS communication    //      6:X - anything else that the client deems useful to diagnosing this problem.    // Notes:    //      This differs from ERROR_GPS_EXPIRED is that no communication from    //      GPS module (whether valid, or invalid) has been received in the     //      expected time frame (typically 15 to 30 seconds).  This typically    //      indicates a failure in the GPS module.// ----------------------------------------------------------------------------// Internal errors (data provides specifics):    ERROR_INTERNAL_ERROR_00             = 0xFE00,// ...    // Description:    //      Internal error, as defined by client device    // Payload:    //      0:2 - This error code    //      2:X - payload format is defined by the client.    // Notes:    //      These error codes are for use by the client to allow general    //      error information to be sent to the server for analysis.};typedef enum ClientErrors_enum ClientError_t;// ----------------------------------------------------------------------------#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
丝袜亚洲另类丝袜在线| 麻豆成人av在线| 午夜精品福利一区二区三区av| 日韩成人精品在线观看| 国内精品国产成人国产三级粉色| 国产成人免费网站| 91在线高清观看| 国产成人精品免费在线| 丝袜诱惑制服诱惑色一区在线观看 | 亚洲色图视频网| 亚洲二区在线视频| 毛片基地黄久久久久久天堂| 国产成人免费视频一区| 不卡一区二区三区四区| 欧美日韩在线三区| 久久久五月婷婷| 亚洲欧美一区二区三区国产精品 | 不卡一区二区中文字幕| 欧美肥胖老妇做爰| 国产精品美女一区二区在线观看| 亚洲成人免费视频| 成熟亚洲日本毛茸茸凸凹| 欧美疯狂性受xxxxx喷水图片| 中文字幕精品综合| 亚洲sss视频在线视频| 天使萌一区二区三区免费观看| 国产成人精品三级麻豆| 91精品国产免费久久综合| 亚洲欧洲一区二区在线播放| 精品一二线国产| 欧美日韩国产天堂| 2021国产精品久久精品| 亚洲一区二区三区四区在线免费观看| 日韩电影在线免费| 色婷婷av一区| 国产欧美中文在线| 日本在线不卡视频| 国产乱码精品一区二区三区五月婷 | 欧美一区在线视频| ...xxx性欧美| 免费高清不卡av| 成人av在线影院| 精品久久国产字幕高潮| 日韩电影一区二区三区四区| 在线观看欧美日本| 亚洲欧美自拍偷拍| 北条麻妃国产九九精品视频| 久久亚洲精品小早川怜子| 奇米影视一区二区三区小说| 在线观看av一区二区| 亚洲日本在线视频观看| 99久久亚洲一区二区三区青草| 中文字幕欧美激情| 不卡一卡二卡三乱码免费网站| 欧美国产精品久久| 国产99久久久国产精品免费看| 精品国产91洋老外米糕| 久久精品国产一区二区| 日韩美女视频在线| 精品一区二区三区香蕉蜜桃| 欧美精品一区二区三区很污很色的| 久久国产视频网| 日韩欧美一区二区免费| 日本不卡123| 精品日本一线二线三线不卡| 韩国女主播成人在线观看| 日韩欧美国产麻豆| 老司机午夜精品| 日韩一区和二区| 久久激情五月激情| 久久综合色天天久久综合图片| 激情都市一区二区| 国产亚洲综合在线| 韩国成人精品a∨在线观看| 欧美精品一区二区三区蜜臀| 韩国v欧美v日本v亚洲v| 精品国产免费人成在线观看| 亚洲高清免费观看| 欧美日韩高清在线播放| 日韩不卡手机在线v区| 亚洲精品在线电影| k8久久久一区二区三区| 天天影视涩香欲综合网| 欧美日韩国产一级| 国产在线不卡一卡二卡三卡四卡| 精品国产制服丝袜高跟| 白白色 亚洲乱淫| 日韩在线卡一卡二| 国产日产欧美一区二区视频| 欧美亚洲日本国产| 国产精品夜夜嗨| 国产精品午夜免费| 色综合天天综合网国产成人综合天 | 国产午夜精品一区二区| 91免费在线视频观看| 国产精品国产三级国产普通话99 | 欧美伦理影视网| 国产精品一二三区在线| 午夜精品福利一区二区三区av | 亚洲图片另类小说| 精品欧美一区二区三区精品久久 | 免费av网站大全久久| 中文av字幕一区| 欧美日韩国产三级| 成人精品小蝌蚪| 久久国产精品色| 亚洲一区二区高清| 久久先锋资源网| 欧美女孩性生活视频| www.日韩大片| 国产精品一二三四五| 日韩影院精彩在线| 国产日韩欧美精品在线| 91精品久久久久久久91蜜桃| caoporn国产精品| 国产成人免费在线观看不卡| 欧美a级一区二区| 亚洲超碰97人人做人人爱| 亚洲欧美日韩国产中文在线| 亚洲国产精品高清| 久久人人超碰精品| 日韩欧美自拍偷拍| 51精品国自产在线| 欧美乱妇23p| 欧美男生操女生| 欧美视频在线一区二区三区| 91视频在线观看| 久久99日本精品| 麻豆一区二区三区| 免费观看在线色综合| 免费成人深夜小野草| 三级欧美在线一区| 午夜精品一区在线观看| 亚洲国产成人porn| 亚洲福利视频三区| 日日骚欧美日韩| 青娱乐精品视频| 美女爽到高潮91| 久久99国产精品免费| 黑人精品欧美一区二区蜜桃 | 91在线一区二区三区| 成熟亚洲日本毛茸茸凸凹| 国产乱码精品1区2区3区| 国产一区二区在线观看视频| 国产精品一区二区三区网站| 国产精品一二二区| 成人黄页毛片网站| 91社区在线播放| 欧美三级三级三级爽爽爽| 7799精品视频| 久久影音资源网| 日本一区二区免费在线| 日韩理论片中文av| 午夜一区二区三区视频| 蜜桃视频在线观看一区| 国产丶欧美丶日本不卡视频| 99久久免费国产| 欧美日韩高清一区二区不卡| 日韩手机在线导航| 中国av一区二区三区| 一区二区在线看| 免费的国产精品| 成人激情小说网站| 欧美日韩免费电影| 久久久久久久久久久久久久久99 | 亚洲二区视频在线| 精品系列免费在线观看| 成人av网站免费| 99视频在线精品| 91在线观看污| 欧美一区永久视频免费观看| 久久亚洲私人国产精品va媚药| 国产精品无遮挡| 亚洲第一福利视频在线| 久久99国产精品尤物| jlzzjlzz欧美大全| 7799精品视频| 国产精品午夜在线| 午夜不卡av在线| 狠狠色丁香久久婷婷综| 91丝袜美女网| 久久精品72免费观看| thepron国产精品| 久久久国产午夜精品| 日韩影院免费视频| 欧美日韩中文精品| 一区二区三区四区不卡在线| 成人高清视频在线| 国产日韩欧美a| 国产成人在线网站| 久久久91精品国产一区二区精品 | 欧美成人在线直播| 日韩影院免费视频| 欧美裸体一区二区三区| 亚洲成人自拍网| 欧美日韩精品电影| 午夜精品aaa| 欧美精品三级日韩久久| 日韩精品成人一区二区三区| 欧美日韩大陆一区二区|