?? state.h
字號:
/****************************************************************************
Copyright (C) Cambridge Silicon Radio Limited 2006-2009
Part of BlueLab 4.1-Release
DESCRIPTION
Interface for state management functionality
FILE
state.h
*/
#ifndef APPLICATION_STATE_H
#define APPLICATION_STATE_H
typedef enum
{
/* Application has not been initialised */
AppStateUninitialised,
/* Connection Library has been initialised */
AppStateConInited,
/* Application has completed initialisation and is idle */
AppStateAppIdle,
/* Attempting to connect to the PBAP Server */
AppStateAppConnecting,
/* Connected to the PBAP Server */
AppStateAppConnected,
/* Disconnecting from the PBAP Server */
AppStateAppDisconnecting,
/* Application is attempting to set the current phonebook */
AppStateSetPhonebook,
/* Application is getting the vCard List */
AppStateGetVCardList,
/* Application is getting the vCard Entry */
AppStateGetVCardEntry,
/* Application is downloading the phonebook */
AppStateDownloadPhonebook,
AppStateEndOfList
} app_states;
void setState(app_states *pState, app_states pNewState);
#endif /* APPLICATION_STATE_H */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -