68 lines
1.6 KiB
C
68 lines
1.6 KiB
C
/**************************************************************************************************
|
|
*
|
|
* Copyright (c) 2003-2007 Palm,Inc. or its subsidiaries.
|
|
* All rights reserved.
|
|
*
|
|
*************************************************************************************************/
|
|
|
|
/** @defgroup VersaMailFontApp VersaMailFontApp Sample Code Library
|
|
*
|
|
* Sample code for the VersaMail Font Manager API
|
|
*
|
|
*
|
|
* This project was built using CodeWarrior 9.
|
|
*
|
|
*
|
|
* FileName:
|
|
* VMFontApp.h
|
|
*
|
|
*
|
|
* @version 1.0 - Initial Revision (08/21/03)
|
|
* @version 1.1 - Usha Shekar (3/15/07) - Added "About" box, 5-way navigation
|
|
* and Doxygen comments. Compiles with PODS and GCC.
|
|
*
|
|
*
|
|
*
|
|
* @{
|
|
* @}
|
|
*/
|
|
|
|
/** @ingroup VersaMailFontApp
|
|
*
|
|
*/
|
|
|
|
/**
|
|
*
|
|
* @file VMFontApp.h
|
|
*
|
|
* @brief Sample code for the VersaMail Font Manager API
|
|
*
|
|
*
|
|
*/
|
|
|
|
|
|
#ifndef VMFONTAPP_H_
|
|
#define VMFONTAPP_H_
|
|
|
|
/*********************************************************************
|
|
* Internal Structures
|
|
*********************************************************************/
|
|
|
|
|
|
/*********************************************************************
|
|
* Global variables
|
|
*********************************************************************/
|
|
|
|
|
|
/*********************************************************************
|
|
* Internal Constants
|
|
*********************************************************************/
|
|
|
|
#define appFileCreator 'FmTc'
|
|
#define appName "VMFontApp"
|
|
#define appVersionNum 0x01
|
|
#define appPrefID 0x00
|
|
#define appPrefVersionNum 0x01
|
|
|
|
#endif
|