⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xos_stderr.h.svn-base

📁 brew头文件分析
💻 SVN-BASE
字号:
#ifndef xOSSTDERR_H
#define xOSSTDERR_H
//**************************************************************
//Copyright (C), 2008-2008, AnyLook Co., Ltd.
//File name:    xOS_StdErr.h
//Author:       Gemsea
//Version:      1.0
//Date:         2008/06/07
//Description:
//    xOS Error code define file
//Others: 
//Function List: 
//<Name>        <desc>
//Simple        
//History: 
//<author>      <time>      <version >  <desc>
// Gemsea     2008/06/07       1.0       build this moudle  
//**************************************************************

enum
{
    xOS_SUCCESS              =0,  // No error
    SUCCESS                  =xOS_SUCCESS,
    xOS_EFAILED              =1,  // General failure
    EFAILED                  =xOS_EFAILED,
    xOS_ENOMEMORY            =2,  // Insufficient RAM
    xOS_ECLASSNOTSUPPORT     =3,  // Specified class unsupported
    xOS_EVERSIONNOTSUPPORT   =4,  // Version not supported
    xOS_EALREADYLOADED       =5,  // Object already loaded
    xOS_EUNABLETOLOAD        =6,  // Unable to load object/applet
    xOS_EUNABLETOUNLOAD      =7,  // Unable to unload object/applet
    xOS_EALARMPENDING        =8,  // Alarm is pending
    xOS_EINVALIDTIME         =9,  // Invalid time
    xOS_EBADCLASS            =10, // NULL class object
    xOS_EBADMETRIC           =11, // Invalid metric specified
    xOS_EEXPIRED             =12, // App/Component Expired
    xOS_EBADSTATE            =13, // Invalid state
    xOS_EBADPARM             =14, // Invalid parameter
    xOS_ESCHEMENOTSUPPORTED  =15, // Invalid URL scheme
    xOS_EBADITEM             =16, // Invalid item
    xOS_EINVALIDFORMAT       =17, // Invalid format
    xOS_EINCOMPLETEITEM      =18, // Incomplete item
    xOS_ENOPERSISTMEMORY     =19, // Insufficient flash
    xOS_EUNSUPPORTED         =20, // API is not supported
    xOS_EPRIVLEVEL           =21, // Privileges are insufficient for this operation
    xOS_ERESOURCENOTFOUND    =22,
    xOS_EREENTERED           =23,
    xOS_EBADTASK             =24,
    xOS_EALLOCATED           =25, // App/Module left memory allocated when released.
    xOS_EALREADY             =26, // Operation is already in progress
    xOS_EADSAUTHBAD          =27, // ADS mutual authorization failed
    xOS_ENEEDSERVICEPROG     =28, // Need service programming
    xOS_EMEMPTR              =29, // bad memory pointer
    xOS_EHEAP                =30, // heap corruption
    xOS_EIDLE                =31, // Context (system, interface, etc.) is idle
    xOS_EITEMBUSY            =32, // Context (system, interface, etc.) is busy
    xOS_EBADSID              =33, // Invalid subscriber ID
    xOS_ENOTYPE              =34, // No type detected/found
    xOS_ENEEDMORE            =35, // Need more data/info
    xOS_EADSCAPS             =36, // ADS Capabilities do not match those required for phone
    xOS_EBADSHUTDOWN         =37, // App failed to close properly
    xOS_EBUFFERTOOSMALL      =38, // Destination buffer given is too small
    xOS_ENOSUCH              =39, // No such name/port/socket/service exists or valid
    xOS_EACKPENDING          =40, // ACK pending on application
    xOS_ENOTOWNER            =41, // Not an owner authorized to perform the operation
    xOS_EINVALIDITEM         =42, // Current item is invalid
    xOS_ENOTALLOWED          =43, // Not allowed to perform the operation
    xOS_EBADHANDLE           =44, // Invalid handle
    xOS_EOUTOFHANDLES        =45, // Out of handles
    xOS_EINTERRUPTED         =46, // Waitable call is interrupted
    xOS_ENOMORE              =47, // No more items available -- reached end
    xOS_ECPUEXCEPTION        =48, // A CPU exception occurred
    xOS_EREADONLY            =49, // Cannot change read-only object or parameter
    xOS_EMAX
};

#endif // xOSSTDERR_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -