56 lines
1.9 KiB
C
56 lines
1.9 KiB
C
/**************************************************************************************************
|
|
*
|
|
* Copyright (c) 2004-2006 Palm,Inc. or its subsidiaries.
|
|
* All rights reserved.
|
|
*
|
|
*************************************************************************************************/
|
|
|
|
/**
|
|
@ingroup RadioSample
|
|
*/
|
|
|
|
/**
|
|
* @brief Include file for both PalmRez and the C Compiler. This file contains
|
|
* equates used by both tools. When compiling using the C compiler
|
|
* the variable RESOURCE_COMPILER must be defined.
|
|
*
|
|
*
|
|
* @version Version 1.0 - 7/24/01 ACo Copied from Primary
|
|
* @file DeviceSystemResources.h
|
|
*
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __DEVICESYSTEMRESOURCES_H__
|
|
#define __DEVICESYSTEMRESOURCES_H__
|
|
|
|
|
|
/**
|
|
* @name Defines
|
|
* @brief File types and creators
|
|
* This section is common to both the C and Resource Compiler
|
|
* Refer to SystemResources.h for details
|
|
*
|
|
*/
|
|
/*@{*/
|
|
|
|
#define sysFileCTelMgrLibOem 'tmge' // Creator ID for the Telephony Manager Extension shared library.
|
|
#define sysFileCSimATDriverOem 'sims' // Creator ID for the SIM AT Driver.
|
|
#define sysFileCSimOfficer 'sats' // Creator ID for the SIM Application Toolkit client application.
|
|
#define sysFileCSimWatcherLib 'simw' // Creator ID for the SIM Watcher library.
|
|
#define sysFileCProvisioning 'prov' // Creator ID for the provisioning application.
|
|
#define sysFileCMobileServices 'msvc' // Creator ID for the Mobile Service Library
|
|
#define sysFileCMyFavorite 'myfv' // Creator ID for the MyFavorite App.
|
|
#define sysFileCNotePad 'npad' // Creator ID for the Notepad app.
|
|
|
|
#define sysFileTHidden 'hidn' // File Type of MyFavorite App.
|
|
#define sysFileTSimFileCacheDB 'sefc' // File Type for the SIM Elementary File Cache daba base.
|
|
#define sysFileTDeviceExtension 'extd' // File Type for device extensions that need to be loaded after OEM extension
|
|
|
|
|
|
|
|
#endif // __DEVICESYSTEMRESOURCES_H__
|
|
|
|
/*@}*/
|