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

📄 jcal.h.svn-base

📁 gif to bmp conversion
💻 SVN-BASE
字号:
/***************************************************************************
 * $Id: jcal.h,v 1.50 2008/07/02 13:10:25 kawalccjims Exp $
 * $Revision: 1.50 $
 * $DateTime: $
 * 
 * IMPORTANT NOTICE
 *
 * Please note that any and all title and/or intellectual property rights 
 * in and to this Software or any part of this (including without limitation 
 * any images, photographs, animations, video, audio, music, text and/or 
 * "applets," incorporated into the Software), herein mentioned to as 
 * "Software", the accompanying printed materials, and any copies of the 
 * Software, are owned by Jataayu Software (P) Ltd., Bangalore ("Jataayu") 
 * or Jataayu's suppliers as the case may be. The Software is protected by 
 * copyright, including without limitation by applicable copyright laws, 
 * international treaty provisions, other intellectual property laws and 
 * applicable laws in the country in which the Software is being used. 
 * You shall not modify, adapt or translate the Software, without prior 
 * express written consent from Jataayu. You shall not reverse engineer, 
 * decompile, disassemble or otherwise alter the Software, except and 
 * only to the extent that such activity is expressly permitted by 
 * applicable law notwithstanding this limitation. Unauthorized reproduction 
 * or redistribution of this program or any portion of it may result in severe 
 * civil and criminal penalties and will be prosecuted to the maximum extent 
 * possible under the law. Jataayu reserves all rights not expressly granted. 
 * 
 * THIS SOFTWARE IS PROVIDED TO YOU "AS IS" WITHOUT WARRANTY OF ANY 
 * KIND AND ANY AND ALL REPRESENTATION AND WARRANTIES, EITHER EXPRESS 
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF 
 * MERCHANTABILITY ACCURACY OF INFORMATIONAL CONTENT, AND/OR FITNESS 
 * FOR A PARTICULAR PURPOSE OR USE, TITLE OR INFRINGEMENT ARE EXPRESSLY 
 * DISCLAIMED TO THE FULLEST EXTENT PERMITTED BY LAW. YOU ASSUME THE 
 * ENTIRE RISK AS TO THE ACCURACY AND THE USE OF THIS SOFTWARE. JATAAYU 
 * SHALL NOT BE LIABLE FOR ANY CONSEQUENTIAL, INCIDENTAL, INDIRECT, 
 * EXEMPLARY, SPECIAL OR PUNITIVE DAMAGES INCLUDING WITHOUT LIMITATION 
 * ANY LOSS OF DATA, OR; LOSS OF PROFIT, SAVINGS BUSINESS OR GOODWILL 
 * OR OTHER SIMILAR LOSS RESULTING FROM OR OUT OF THE USE OR INABILITY 
 * TO USE THIS SOFTWARE, EVEN IF JATAAYU HAS BEEN ADVISED OF THE 
 * POSSIBILITY OF SUCH DAMAGE, OR FOR ANY CLAIM BY ANY THIRD PARTY.
 *
 ***************************************************************************
 *
 * Revision Details
 * ----------------
 * $Log: jcal.h,v $
 * Revision 1.50  2008/07/02 13:10:25  kawalccjims
 * *** empty log message ***
 *
 * Revision 1.7  2006/03/04 11:50:34  kumardevhtmlbrow
 * *** empty log message ***
 *
 * Revision 1.6  2006/01/25 07:22:16  kumardevhtmlbrow
 * *** empty log message ***
 *
 * Revision 1.4  2005/12/12 15:29:02  kumardevhtmlbrow
 * Providing the logging framework for all the modules with the new JDD log abstraction
 *
 * Revision 1.3  2005/09/12 12:17:44  kumardevhtmlbrow
 * Given the additional new line at the end ....
 *
 * Revision 1.2  2005/03/24 10:57:50  kumardevhtmlbrow
 * Changed as per the coding standard
 *
 *  
 ***************************************************************************/

/** @mainpage
 * This document describes the Jataayu device dependent abstraction layer for all 
 * mobile terminal applications that are developed in Jataayu Software. 
 * This document describes the list of platform dependent calls that needs to be 
 * implemented in a specific platform for Jataayu mobile terminal applications to work. 
 
 * This document shall be available to prospective and current clients under NDA to 
 * understand the device dependent abstraction layer of the Jataayu mobile terminal 
 * applications. 
 *
 * @section nc Naming Convention
 * All the API calls shall start with jdd_<ModuleName> (Jataayu Device Dependent layer),
 * here the module name describes abstraction layer module such as Mem, MMI, Net, etc.
 * 
 * @section datatype Data Types
 * The generic data types that are referred in this document are JC_INT8, JC_UINT8, 
 * JC_INT16, JC_UINT16, JC_INT32, JC_UINT32 and JC_BOOLEAN.
 * @li JC_INT8 refers to signed 8 bit data.
 * @li JC_UINT8 refers to unsigned 8 bit data.
 * @li JC_INT16 refers to signed 16 bit data.
 * @li JC_UINT16 refers to unsigned 16 bit data.
 * @li JC_INT32 refers to signed 32 bit data.
 * @li JC_UINT32 refers to usigned 32 bit data.
 * @li JC_BOOLEAN refers to the datatype where it holds only two values such as E_TRUE and E_FALSE.
 *
 * @Note Unless otherwise it is specified all the JDD API should return JC_OK as the 
 * return value for success, when the return code is JC_RETCODE.
 *
 * @defgroup Memory Memory Abstraction Layer
 * @defgroup MMI MMI Abstraction Layer
 * @defgroup File File Abstraction Layer
 * @defgroup Queue Queue Abstraction Layer
 * @defgroup Task Task Abstraction Layer
 * @defgroup Network Network Abstraction Layer
 * @defgroup Timer Timer Abstraction Layer
 * @defgroup Mime Mime Abstraction Layer
 * @defgroup Log Log Abstraction Layer
 * @defgroup DataConnection Data Connection Abstraction Layer
 * @defgroup MISC Miscellaneous Abstraction Layer
 * @defgroup Semaphore Semaphore Abstraction Layer
 * @defgroup TAPI Telephony Abstraction Layer 
 * @defgroup general General Information
 */

#ifndef JCAL_H
#define JCAL_H

/** @cond */

#include <jcerror.h>
#include <jcutils.h>
#include <jcevent.h>

#include <jdd_memapi.h>
#include <jdd_fileapi.h>
#include <jdd_mmidatatype.h>
#include <jdd_mmiapi.h>
#include <jdd_queueapi.h>
#include <jdd_taskapi.h>
#include <jdd_semapi.h>
#include <jdd_timerapi.h>
#include <jdd_miscapi.h>
#include <jdd_mimeapi.h>
#include <jdd_logapi.h>
#include <jdd_dataconnection.h>
#include <jdd_tapi.h>

/** @endcond */

#endif

/* END OF FILE */




⌨️ 快捷键说明

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