59 lines
1.3 KiB
C
59 lines
1.3 KiB
C
/**************************************************************************************************
|
|
*
|
|
* Copyright (c) 2004-2006 Palm,Inc. or its subsidiaries.
|
|
* All rights reserved.
|
|
*
|
|
*************************************************************************************************/
|
|
|
|
/** @defgroup Keyguard Keyguard Sample Code Library
|
|
*
|
|
* This sample code shows how to activate the keyguard programmatically, and also
|
|
* disable it everytime an incoming SMS alert takes place.
|
|
*
|
|
*
|
|
* FileName:
|
|
* Keyguard.h
|
|
*
|
|
* @version Version 1.0 - Initial Revision
|
|
* @version Version 1.1 - Added "About" Box
|
|
*
|
|
*
|
|
* @{
|
|
* @}
|
|
*/
|
|
|
|
/** @ingroup Keyguard
|
|
*
|
|
*/
|
|
|
|
/**
|
|
*
|
|
* @file Keyguard.h
|
|
*
|
|
* @brief Resources for a test application for some of address
|
|
* book's launch codes.
|
|
*
|
|
*/
|
|
|
|
#ifndef KEYGUARD_H_
|
|
#define KEYGUARD_H_
|
|
|
|
/*********************************************************************
|
|
* Internal Constants
|
|
*********************************************************************/
|
|
/**
|
|
* @name Constants
|
|
*
|
|
*/
|
|
/*@{*/
|
|
|
|
#define appFileCreator 'KgTt'
|
|
#define appName "Keyguard"
|
|
#define appVersionNum 0x01
|
|
#define appPrefID 0x00
|
|
#define appPrefVersionNum 0x01
|
|
|
|
/*@}*/
|
|
|
|
#endif /* KEYGUARD_H_ */
|