66 lines
1.8 KiB
C
66 lines
1.8 KiB
C
/**************************************************************************************************
|
|
*
|
|
* Copyright (c) 2004-2006 Palm,Inc. or its subsidiaries.
|
|
* All rights reserved.
|
|
*
|
|
*************************************************************************************************/
|
|
|
|
|
|
/** @defgroup _LaunchCommands _LaunchCommands Sample Code Library
|
|
*
|
|
* This sample code shows how to use various Phone app launch commands to dial or
|
|
* show keypad. It also shows how to launch the Web browser, including in
|
|
* minimal mode.
|
|
*
|
|
*
|
|
* @version 1.0 - Initial Revision
|
|
* @version 1.1 - Fixed errors in MainDialPadEmptyButton and MainDialButton cases
|
|
* - Separated common functions from specific _LaunchCommands
|
|
* related ones. (11/28/06) - Usha Shekar
|
|
* FileName:
|
|
* LaunchCommands.h
|
|
*
|
|
*
|
|
*
|
|
* @{
|
|
* @}
|
|
*/
|
|
|
|
/** @ingroup _LaunchCommands
|
|
*
|
|
*/
|
|
|
|
/**
|
|
*
|
|
* @file LaunchCommands.h
|
|
*
|
|
* @brief Header file for _LaunchCommands
|
|
*
|
|
*/
|
|
|
|
|
|
#ifndef LAUNCHCOMMANDS_H_
|
|
#define LAUNCHCOMMANDS_H_
|
|
|
|
/*********************************************************************
|
|
* Internal Structures
|
|
*********************************************************************/
|
|
|
|
|
|
/*********************************************************************
|
|
* Global variables
|
|
*********************************************************************/
|
|
|
|
|
|
/*********************************************************************
|
|
* Internal Constants
|
|
*********************************************************************/
|
|
|
|
#define appFileCreator 'LCTt'
|
|
#define appName "LaunchCommands"
|
|
#define appVersionNum 0x01
|
|
#define appPrefID 0x00
|
|
#define appPrefVersionNum 0x01
|
|
|
|
#endif /* LAUNCHCOMMANDS_H_ */
|