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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? pccserrors.cs

?? 以前做NOKIA手機與PC通信時所參考的源代碼,里面包括兩個程序,一個是手機文件夾瀏覽源碼,另一個手機SIS安裝程序.
?? CS
字號:
//
//==============================================================================
// Local Connectivity API 3.2
//
//Filename    : PCCSErrors.cs
//Description : Error Definitions
//Version     : 3.2
//
//Copyright (c) 2005, 2006, 2007 Nokia Corporation.
//This software, including but not limited to documentation and any related 
//computer programs ("Software"), is protected by intellectual property rights 
//of Nokia Corporation and/or its licensors. All rights are reserved. By using 
//the Software you agree to the terms and conditions hereunder. If you do not 
//agree you must cease using the software immediately.
//Reproducing, disclosing, modifying, translating, or distributing any or all 
//of the Software requires the prior written consent of Nokia Corporation. 
//Nokia Corporation retains the right to make changes to the Software at any 
//time without notice.
//
//A copyright license is hereby granted to use of the Software to make, publish, 
//distribute, sub-license and/or sell new Software utilizing this Software. 
//The Software may not constitute the primary value of any new software utilizing 
//this software. No other license to any other intellectual property rights of 
//Nokia or a third party is granted. 
//
//THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS 
//OR IMPLIED, INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF NON-INFRINGEMENT, 
//MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL
//NOKIA CORPORATION BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, 
//OR CONSEQUENTIAL LOSS OR DAMAGES, INCLUDING BUT NOT LIMITED TO, LOST PROFITS 
//OR REVENUE, LOSS OF USE, COST OF SUBSTITUTE PROGRAM, OR LOSS OF DATA OR EQUIPMENT 
//ARISING OUT OF THE USE OR INABILITY TO USE THE MATERIAL, EVEN IF 
//NOKIA CORPORATION HAS BEEN ADVISED OF THE LIKELIHOOD OF SUCH DAMAGES OCCURRING. 
//==============================================================================
namespace PCCSErrors
{
    class PCCSErrors
    {

        /////////////////////////////////////////////////////////////
        //// Connectivity API errors
        /////////////////////////////////////////////////////////////
        // Everything ok
        public const int CONA_OK = 0;
        // Everything ok, given data is updated because (free, used and total) memory values are changed!
        public const int CONA_OK_UPDATED_MEMORY_VALUES = 0x1;
        // Everything ok, given data is updated because files and memory values are changed!
        public const int CONA_OK_UPDATED_MEMORY_AND_FILES = 2;
        // Everything ok, given data is updated, unknown reason.
        public const int CONA_OK_UPDATED = 4;
        // Everything ok, but operation needs some user action (device side)
        public const int CONA_OK_BUT_USER_ACTION_NEEDED = 256;
        // Operation started ok but other application is reserved connection, please wait.
        public const int CONA_WAIT_CONNECTION_IS_BUSY = 257;
        // This result code comes via FS nofication when ConnAPI is initialized by value 20 or bigger.

        // Common error codes:
        // DLL initialization failed
        public const int ECONA_INIT_FAILED = -2146435072;
        // Failed to get connection to System.
        public const int ECONA_INIT_FAILED_COM_INTERFACE = -2146435070;
        // API is not initialized
        public const int ECONA_NOT_INITIALIZED = -2146435068;
        // Failed, not supported API version
        public const int ECONA_UNSUPPORTED_API_VERSION = -2146435067;
        // Failed, not supported manufacturer
        public const int ECONA_NOT_SUPPORTED_MANUFACTURER = -2146435066;
        // Failed, unknown error
        public const int ECONA_UNKNOWN_ERROR = -2146435056;
        // Failed, unknown error from Device
        public const int ECONA_UNKNOWN_ERROR_DEVICE = -2146435055;
        // Required pointer is invalid
        public const int ECONA_INVALID_POINTER = -2146435054;
        // Invalid Parameter value
        public const int ECONA_INVALID_PARAMETER = -2146435053;
        // Invalid HANDLE
        public const int ECONA_INVALID_HANDLE = -2146435052;
        // Memory allocation failed in PC
        public const int ECONA_NOT_ENOUGH_MEMORY = -2146435051;
        // Failed, Called interface was marshalled for a different thread.
        public const int ECONA_WRONG_THREAD = -2146435050;
        // Failed, notification interface is already registered.
        public const int ECONA_REGISTER_ALREADY_DONE = -2146435049;
        // Operation cancelled by ConnectivityAPI-User
        public const int ECONA_CANCELLED = -2146435040;
        // No running functions, or cancel has called too late.
        public const int ECONA_NOTHING_TO_CANCEL = -2146435039;
        // Operation failed because of timeout
        public const int ECONA_FAILED_TIMEOUT = -2146435038;
        // Device do not support operation
        public const int ECONA_NOT_SUPPORTED_DEVICE = -2146435037;
        // ConnectivityAPI do not support operation (not implemented)
        public const int ECONA_NOT_SUPPORTED_PC = -2146435036;
        // Item was not found
        public const int ECONA_NOT_FOUND = -2146435035;
        // Failed, the called operation failed.
        public const int ECONA_FAILED = -2146435034;

        // Needed API module was not found from the system
        public const int ECONA_API_NOT_FOUND = -2146434816;
        // Called API function was not found from the loaded API module
        public const int ECONA_API_FUNCTION_NOT_FOUND = -2146434815;

        // Device manager and device connection related errors:
        // Given phone is not connected (refresh device list)
        public const int ECONA_DEVICE_NOT_FOUND = -2145386496;
        // Phone is connected but not via given Media
        public const int ECONA_NO_CONNECTION_VIA_MEDIA = -2145386495;
        // Phone is not connected with given DevID
        public const int ECONA_NO_CONNECTION_VIA_DEVID = -2145386494;
        // Connection type was invalid
        public const int ECONA_INVALID_CONNECTION_TYPE = -2145386493;
        // Device do not support connection type
        public const int ECONA_NOT_SUPPORTED_CONNECTION_TYPE = -2145386492;
        // Other application is recerved connection
        public const int ECONA_CONNECTION_BUSY = -2145386491;
        // Connection is lost to Device
        public const int ECONA_CONNECTION_LOST = -2145386490;
        // Connection removed, other application is reserved connection.
        public const int ECONA_CONNECTION_REMOVED = -2145386489;
        // Connection failed, unknown reason
        public const int ECONA_CONNECTION_FAILED = -2145386488;
        // Connection removed, PC goes suspend state
        public const int ECONA_SUSPEND = -2145386487;
        // Friendly name already exist
        public const int ECONA_NAME_ALREADY_EXISTS = -2145386486;
        // Failed, target media is active but it is not working (e.g. BT-hardware stopped or removed)
        public const int ECONA_MEDIA_IS_NOT_WORKING = -2145386485;
        // Failed, cache is not available (CONASearchDevices)
        public const int ECONA_CACHE_IS_NOT_AVAILABLE = -2145386484;
        // Failed, target media is active (or ready yet)
        public const int ECONA_MEDIA_IS_NOT_ACTIVE = -2145386483;
        // Port opening failed (only when media is API_MEDIA_SERIAL and COM port is changed).
        public const int ECONA_PORT_OPEN_FAILED = -2145386482;

        // Device paring releated errors:
        // Failed, pairing failed
        public const int ECONA_DEVICE_PAIRING_FAILED = -2145386240;
        // Failed, wrong password on device. 
        public const int ECONA_DEVICE_PASSWORD_WRONG = -2145386239;
        // Failed, password includes invalid characters or missing. 
        public const int ECONA_DEVICE_PASSWORD_INVALID = -2145386238;

        // File System errors:
        // All items are listed
        public const int ECONA_ALL_LISTED = -2144337920;
        // Device memory full
        public const int ECONA_MEMORY_FULL = -2144337919;

        // File System errors for file functions:
        // File name includes invalid characters in Device or PC
        public const int ECONA_FILE_NAME_INVALID = -2143289343;
        // File name includes too many characters in Device or PC
        public const int ECONA_FILE_NAME_TOO_LONG = -2143289342;
        // File already exists in Device or PC
        public const int ECONA_FILE_ALREADY_EXIST = -2143289341;
        // File does not exist in Device or PC
        public const int ECONA_FILE_NOT_FOUND = -2143289340;
        // Not allowed to perform required operation to file in Device or PC
        public const int ECONA_FILE_NO_PERMISSION = -2143289339;
        // Not allowed to perform required operation to file in Device or PC
        public const int ECONA_FILE_COPYRIGHT_PROTECTED = -2143289338;
        // Other application has reserved file in Device or PC
        public const int ECONA_FILE_BUSY = -2143289337;
        // Device rejected the operation because file size is too big
        public const int ECONA_FILE_TOO_BIG_DEVICE = -2143289336;
        // Device rejected the operation because file unsupported type
        public const int ECONA_FILE_TYPE_NOT_SUPPORTED = -2143289335;
        public const int ECONA_FILE_NO_PERMISSION_ON_PC = -2143289334;
        // File move or rename: File is copied to target path with new name but removing the source file failed. 
        public const int ECONA_FILE_EXIST = -2143289333;
        // Specified file content does not found (e.g. unknown file section or stored position).
        public const int ECONA_FILE_CONTENT_NOT_FOUND = -2143289332;
        // Specified file content supports old engine.
        public const int ECONA_FILE_OLD_FORMAT = -2143289331;
        // Specified file data is invalid.
        public const int ECONA_FILE_INVALID_DATA = -2143289330;

        // File System errors for folder functions:
        // Device's folder contains invalid data
        public const int ECONA_INVALID_DATA_DEVICE = -2142240768;
        // Current folder is invalid in device (e.g MMC card removed).
        public const int ECONA_CURRENT_FOLDER_NOT_FOUND = -2142240767;
        // Current folder max unicode charaters count is limited to 255.
        public const int ECONA_FOLDER_PATH_TOO_LONG = -2142240766;
        // Folder name includes invalid characters in Device or PC
        public const int ECONA_FOLDER_NAME_INVALID = -2142240765;
        // Folder is already exists in target folder
        public const int ECONA_FOLDER_ALREADY_EXIST = -2142240764;
        // Folder does not exists in target folder
        public const int ECONA_FOLDER_NOT_FOUND = -2142240763;
        // Not allowed to perform required operation to folder in Devic
        public const int ECONA_FOLDER_NO_PERMISSION = -2142240762;
        // Not allowed to perform required operation because folder is not empty
        public const int ECONA_FOLDER_NOT_EMPTY = -2142240761;
        // Not allowed to perform required operation to folder in PC
        public const int ECONA_FOLDER_NO_PERMISSION_ON_PC = -2142240760;

        // Application installation error:
        // Cannot start Device's installer
        public const int ECONA_DEVICE_INSTALLER_BUSY = -2141192192;

        //Syncronization specific error codes :
        // Failed, device rejects the operation. Maybe device's UI was not IDLE-state.
        public const int ECONA_UI_NOT_IDLE_DEVICE = -2140143616;
        // Failed, device's SA sync client is busy.
        public const int ECONA_SYNC_CLIENT_BUSY_DEVICE = -2140143615;
        // Failed, device rejects the operation. No permission.
        public const int ECONA_UNAUTHORIZED_DEVICE = -2140143614;
        // Failed, device rejects the operation. Device is locked.
        public const int ECONA_DATABASE_LOCKED_DEVICE = -2140143613;
        // Failed, device rejects the operation. Maybe settings in Sync profile are wrong on Device.
        public const int ECONA_SETTINGS_NOT_OK_DEVICE = -2140143612;
        // 
        public const int ECONA_SYNC_ITEM_TOO_BIG = -2140142335;
        // All commands,Device reject the operation...
        public const int ECONA_SYNC_ITEM_REJECT = -2140142334;
        // 
        public const int ECONA_SYNC_INSTALL_PLUGIN_FIRST = -2140142330;

        // Versit conversion specific error codes :			
        // Invalid parameters passed to versit converter 
        public const int ECONA_VERSIT_INVALID_PARAM = -2139095039;
        // Failed, trying to convert versit formats not supported in VersitConverter
        public const int ECONA_VERSIT_UNKNOWN_TYPE = -2139095038;
        // Failed, validation of versit data not passed, contains invalid data
        public const int ECONA_VERSIT_INVALID_VERSIT_OBJECT = -2139095037;

        // Database specific error codes :
        // Another transaction is already in progress.
        public const int ECONA_DB_TRANSACTION_ALREADY_STARTED = -2139094784;
        // Some of operations within a transaction failed and transaction was rolled back.
        public const int ECONA_DB_TRANSACTION_FAILED = -2139094783;

        // Backup specific error codes
        // Failed, device rejects the restore operation. Device's battery level is low.
        public const int ECONA_DEVICE_BATTERY_LEVEL_TOO_LOW = -2138046464;
        // Failed, device rejects the backup/resore operation. Device's backup server busy.
        public const int ECONA_DEVICE_BUSY = -2138046463;

    }
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品一区二区三区四区| 亚洲一区二区美女| 国产成+人+日韩+欧美+亚洲| 精品国产精品网麻豆系列 | 99精品在线观看视频| 国产精品区一区二区三| 99久久婷婷国产| 亚洲综合视频在线| 欧美日韩免费高清一区色橹橹| 日韩精品色哟哟| 久久丝袜美腿综合| 99精品久久99久久久久| 午夜精品视频一区| www激情久久| 91视频在线观看| 日韩中文字幕1| 国产嫩草影院久久久久| 日本电影欧美片| 美女视频黄频大全不卡视频在线播放| 久久中文娱乐网| 91福利社在线观看| 麻豆一区二区三区| 最新中文字幕一区二区三区 | 久久久久国产精品免费免费搜索| 成人免费视频一区| 五月婷婷久久综合| 久久精子c满五个校花| 色呦呦一区二区三区| 美女高潮久久久| 亚洲黄色性网站| 久久久综合精品| 欧美日韩电影一区| fc2成人免费人成在线观看播放| 性做久久久久久久免费看| 国产亚洲欧美一区在线观看| 欧美亚洲国产一区二区三区va | 国产精品高潮呻吟久久| 91精品国产免费| 91丨九色丨尤物| 激情图区综合网| 午夜精品福利一区二区三区蜜桃| 国产日韩综合av| 777亚洲妇女| 色欧美片视频在线观看在线视频| 捆绑变态av一区二区三区| 中文字幕一区二区三| 2020国产成人综合网| 欧美日韩国产天堂| 99国内精品久久| 国产在线精品国自产拍免费| 亚洲一级二级三级| 国产精品美女久久福利网站| 日韩一区二区三区在线视频| 99久久99久久精品国产片果冻| 久久精品国产免费| 午夜久久久影院| 伊人色综合久久天天人手人婷| 久久久另类综合| 日韩精品一区二区三区swag | 在线综合视频播放| 色综合久久66| aaa欧美日韩| 丁香六月综合激情| 国产黑丝在线一区二区三区| 麻豆成人91精品二区三区| 亚洲福中文字幕伊人影院| 成人欧美一区二区三区黑人麻豆 | 欧美一二三区在线观看| 欧美日韩精品专区| 欧美日韩国产影片| 欧美伦理视频网站| 欧美美女一区二区三区| 欧美日韩国产免费| 51精品视频一区二区三区| 欧美日韩精品一区二区| 欧美丝袜丝交足nylons| 欧美日韩免费观看一区二区三区| 色视频一区二区| 在线观看成人免费视频| 欧美性xxxxx极品少妇| 欧美视频自拍偷拍| 欧美日韩在线播放三区| 欧美日韩国产不卡| 日韩欧美一区二区久久婷婷| 欧美成人女星排名| 欧美r级电影在线观看| 久久亚洲影视婷婷| 国产精品你懂的在线| 亚洲欧洲韩国日本视频| 夜夜揉揉日日人人青青一国产精品| 亚洲乱码国产乱码精品精小说| 亚洲色图一区二区三区| 亚洲一区二区精品视频| 美女网站视频久久| 韩国女主播一区| 99久久99久久精品免费看蜜桃| 色欧美88888久久久久久影院| 欧美日韩一区成人| 2020国产精品久久精品美国| 国产精品久久久久影视| 亚洲综合丁香婷婷六月香| 日本伊人色综合网| 国产v综合v亚洲欧| 在线观看亚洲专区| 欧美成人一区二区三区| 中文字幕av一区二区三区免费看| 亚洲视频一区二区在线观看| 香蕉久久夜色精品国产使用方法| 精品中文字幕一区二区| thepron国产精品| 欧美日韩在线一区二区| 久久亚洲一区二区三区四区| 亚洲人成人一区二区在线观看| 午夜精品久久久久久久久| 国产一区二区三区在线观看免费| 色哟哟亚洲精品| 欧美精品一区男女天堂| 亚洲人成在线观看一区二区| 亚洲国产日产av| 丰满白嫩尤物一区二区| 欧美日韩综合在线| 国产日韩欧美精品电影三级在线| 亚洲综合成人在线视频| 国产盗摄女厕一区二区三区| 欧美性生活一区| 国产日韩欧美不卡在线| 午夜精品久久久久久久| 成人短视频下载| 欧美精品一区二区三区久久久| 亚洲精品va在线观看| 精品一区二区在线观看| 欧洲精品视频在线观看| 欧美国产激情二区三区| 久久国产精品72免费观看| 在线看日韩精品电影| 中文av一区特黄| 久久精品久久99精品久久| 色丁香久综合在线久综合在线观看| 精品欧美一区二区久久| 亚洲专区一二三| 91原创在线视频| 国产欧美一区二区精品性| 青青青爽久久午夜综合久久午夜| 91性感美女视频| 日本一区二区三区视频视频| 老色鬼精品视频在线观看播放| 欧美少妇性性性| 夜夜嗨av一区二区三区网页 | 不卡一区二区中文字幕| 欧美白人最猛性xxxxx69交| 日一区二区三区| 色国产综合视频| 中文字幕亚洲欧美在线不卡| 国产美女精品一区二区三区| 欧美一级爆毛片| 亚洲不卡一区二区三区| 日本道在线观看一区二区| 亚洲免费在线观看| 99国产麻豆精品| 中文字幕日韩一区| 成人av在线一区二区| 中文字幕欧美日韩一区| 国产成人自拍网| 国产精品视频免费看| 国产成人精品网址| 国产日产欧美一区二区三区| 国产乱色国产精品免费视频| 欧美成人性战久久| 韩国女主播一区二区三区| 久久日韩精品一区二区五区| 极品少妇xxxx偷拍精品少妇| 日韩一区二区电影网| 蜜臀av性久久久久蜜臀av麻豆| 欧美一区二区三区免费大片| 精品在线一区二区| 久久久精品日韩欧美| 国产suv一区二区三区88区| 中文字幕中文在线不卡住| 91香蕉视频mp4| 午夜一区二区三区视频| 欧美一级淫片007| 国产精品综合一区二区三区| 国产日韩成人精品| 色悠悠久久综合| 日韩精品色哟哟| 国产欧美日韩卡一| 91免费视频网| 日日夜夜免费精品| 久久久亚洲精品石原莉奈 | 一区二区三区四区激情| 欧美亚洲免费在线一区| 久久机这里只有精品| 久久久国产精品不卡| 91视频.com| 日韩精品91亚洲二区在线观看| 2020国产精品自拍| 91黄色在线观看| 国产在线精品一区二区不卡了| 国产精品国模大尺度视频| 欧美日韩视频不卡|