|
WM上震动的实现库(适合PPC WM5.0/6.0/6.1/6.5)
和应用sample,基本在面世的PPC WM上通用(有不work的,请告诉我:))
有任何问题和需求,请联系: njbxsw2009@163.com
需要smartphone库的同志请及时联系我!
【文件名】:091129@52RD_vibrator_lib.rar
【格 式】:rar
【大 小】:72K
【简 介】:
【目 录】:
#ifndef _VIBRATOR_LIB_H_
#define _VIBRATOR_LIB_H_
#define VIBRATOR_ON 1
#define VIBRATOR_OFF 0
// -----------------------------------------------------------------------------
//
// @doc EXTERNAL
//
// @func Initial the vibrator
//
// @comm Return Value: TRUE = Success, FALSE = Failed
// @remark:must use with Vibrator_Uninit
//
//
// -----------------------------------------------------------------------------
bool Vibrator_Init();
// -----------------------------------------------------------------------------
//
// @doc EXTERNAL
//
// @func Uninitial the vibrator
//
// @comm Return Value: TRUE = Success, FALSE = Failed
// @remark:must use with Vibrator_Init
//
//
// -----------------------------------------------------------------------------
bool Vibrator_Uninit();
// -----------------------------------------------------------------------------
//
// @doc EXTERNAL
//
// @func Do the vibration ON/OFF
// @comm Input Value: VIBRATOR_ON,VIBRATOR_OFF
// @comm Return Value: TRUE = Success, FALSE = Failed
// @remark:must use after Vibrator_Init and before Vibrator_Uninit
//
//
// -----------------------------------------------------------------------------
bool Vibrator_Act(const unsigned int);
#endif |
|