38 lines
878 B
C
38 lines
878 B
C
/***********************************************************************
|
|
*
|
|
* Copyright (c) 2002 Palm Computing, Inc. or its subsidiaries.
|
|
* All rights reserved.
|
|
*
|
|
***********************************************************************/
|
|
|
|
/***********************************************************************
|
|
*
|
|
* File:
|
|
* RecordForm.h
|
|
*
|
|
* Description:
|
|
* Record form header.
|
|
*
|
|
* Version 1.0 - Initial Revision (03/04/03)
|
|
*
|
|
***********************************************************************/
|
|
|
|
#ifndef RECORDFORM_H_
|
|
#define RECORDFORM_H_
|
|
|
|
#include <PalmOS.h>
|
|
|
|
/************************************************************
|
|
* Function Prototypes
|
|
*************************************************************/
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
Boolean RecordFormHandleEvent(EventType *eventP);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // TESTEXTENDEDSOUND_H_
|