36 lines
655 B
C
36 lines
655 B
C
/***********************************************************************
|
|
*
|
|
* Copyright (c) 1995-1997, Palm Computing Inc., All Rights Reserved
|
|
*
|
|
* PROJECT: Pilot
|
|
* FILE: Init.h
|
|
* AUTHOR: Art Lamb: Jan 25, 1995
|
|
*
|
|
* DECLARER: UI
|
|
*
|
|
* DESCRIPTION:
|
|
* This file defines UI initialization routines.
|
|
*
|
|
**********************************************************************/
|
|
|
|
#ifndef __INIT_H__
|
|
#define __INIT_H__
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void UIInitialize (void)
|
|
SYS_TRAP(sysTrapUIInitialize);
|
|
|
|
extern void UIReset (void)
|
|
SYS_TRAP(sysTrapUIReset);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif __INIT_H__
|