wifi_stop.h
上传用户:gelin96
上传日期:2017-01-08
资源大小:20993k
文件大小:3k
源码类别:

MTK

开发平台:

C++ Builder

  1. /*****************************************************************************
  2. *  Copyright Statement:
  3. *  --------------------
  4. *  This software is protected by Copyright and the information contained
  5. *  herein is confidential. The software may not be copied and the information
  6. *  contained herein may not be used or disclosed except with the written
  7. *  permission of MediaTek Inc. (C) 2001
  8. *
  9. *****************************************************************************/
  10. /*****************************************************************************
  11.  *
  12.  * Filename:
  13.  * ---------
  14.  *   wifi_stop.h
  15.  *
  16.  * Project:
  17.  * --------
  18.  *   Maui META APP
  19.  *
  20.  * Description:
  21.  * ------------
  22.  *   WIFI stop header
  23.  *
  24.  * Author:
  25.  * -------
  26.  *  Andy Ueng (mtk00490)
  27.  *
  28.  *============================================================================
  29.  *             HISTORY
  30.  * Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
  31.  *------------------------------------------------------------------------------
  32.  * $Revision$
  33.  * $Modtime$
  34.  * $Log$
  35.  *
  36.  *------------------------------------------------------------------------------
  37.  * Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
  38.  *============================================================================
  39.  ****************************************************************************/
  40. #ifndef  _WIFI_STOP_H_
  41. #define  _WIFI_STOP_H_
  42. #include "meta.h"
  43. #ifndef  _MAN_HANDLE_H_
  44. #include "man_handle.h"
  45. #endif
  46. /*---------------------------------------------------------------------------*/
  47. #define  STATE_STOP_OK          0
  48. #define  STATE_STOP_FAIL        1
  49. #define  STATE_STOP_TIMEOUT     2
  50. #define  STATE_STOP_STOP        3
  51. /*---------------------------------------------------------------------------*/
  52. class  CWIFISTOP
  53. {
  54. private:
  55.    // common
  56.    int   m_iConfirmState;
  57.    CMETAHANDLE m_META_HANDLE_Obj;
  58. protected:
  59.    void  Confirm( int confirm_state );
  60. public:
  61.    CWIFISTOP( void );
  62.    ~CWIFISTOP( void );
  63.    void  REQ_Finish( void );
  64.    void  REQ_TimeOut( void );
  65.   // short RFID_STOP;
  66.   // META_RF_STOP_CNF  RFCnf_STOP;
  67.   // void __stdcall CNF_RFStop(const unsigned char cnf, const short token, void *usrData);
  68. /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
  69.   // Public member
  70.    void  (*ConfirmCallback)( void );
  71.   // Public interface
  72.    void  REQ_Start( void );
  73.    void  REQ_Stop( void );
  74.    // global information
  75.    int   Get_ConfirmState( void );
  76. };
  77. /*---------------------------------------------------------------------------*/
  78. #endif