60 lines
1.1 KiB
C
60 lines
1.1 KiB
C
|
//****************************************************************************
|
|||
|
//
|
|||
|
// Copyright (C) 2010 ShenZhen ExceedSpace
|
|||
|
//
|
|||
|
// Author ZhuoYongHong
|
|||
|
//
|
|||
|
// File name: app.h
|
|||
|
// D3<44>Ӵ<EFBFBD><D3B4><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
//
|
|||
|
// Revision history
|
|||
|
//
|
|||
|
// 2010.09.06 ZhuoYongHong Initial version
|
|||
|
//
|
|||
|
//****************************************************************************
|
|||
|
|
|||
|
#ifndef _XSPACE_APP_H_
|
|||
|
#define _XSPACE_APP_H_
|
|||
|
|
|||
|
#include <xm_user.h>
|
|||
|
#include <xm_base.h>
|
|||
|
#include <xm_key.h>
|
|||
|
#include <xm_assert.h>
|
|||
|
#include <xm_printf.h>
|
|||
|
#include <string.h>
|
|||
|
#include <stdlib.h>
|
|||
|
#include <stdio.h>
|
|||
|
|
|||
|
#if defined (__cplusplus)
|
|||
|
extern "C"{
|
|||
|
#endif
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD>ⲿ<EFBFBD><E2B2BF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
// <20><>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
#define XMTIMER_DESKTOPVIEW 1 // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28><><EFBFBD><EFBFBD>)<29>µĶ<C2B5>ʱ<EFBFBD><CAB1>, <20><><EFBFBD>ڹ<EFBFBD><DAB9><EFBFBD>ָ<EFBFBD><D6B8>ˢ<EFBFBD><CBA2>
|
|||
|
#define XMTIMER_CIRCULAR_POINTER_VIEW 2 // <20><>״ָ<D7B4><D6B8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>µĶ<C2B5>ʱ<EFBFBD><CAB1>, <20><><EFBFBD>ڻ<EFBFBD>״ָ<D7B4><D6B8>ˢ<EFBFBD><CBA2>
|
|||
|
#define XMTIMER_CLOCK_VIEW 3 // ʱ<>ӽ<EFBFBD><D3BD><EFBFBD><EFBFBD>µĶ<C2B5>ʱ<EFBFBD><CAB1>
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>(<28><><EFBFBD><EFBFBD>ָ<EFBFBD><D6B8>)<29><>ͼ
|
|||
|
XMHWND_DECLARE(Desktop)
|
|||
|
|
|||
|
// <20><>״ָ<D7B4><D6B8><EFBFBD><EFBFBD>ͼ
|
|||
|
XMHWND_DECLARE(CircularPointer)
|
|||
|
|
|||
|
// ʱ<><CAB1><EFBFBD><EFBFBD>ͼ
|
|||
|
XMHWND_DECLARE(ClockView)
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
void AppInit (void);
|
|||
|
void AppExit (void);
|
|||
|
|
|||
|
|
|||
|
|
|||
|
#if defined (__cplusplus)
|
|||
|
}
|
|||
|
#endif /* end of __cplusplus */
|
|||
|
|
|||
|
#endif // #ifndef _XSPACE_APP_H_w
|