rf_MultiSlotTx_Thrd.cpp
上传用户: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.  *   rf_MultiSlotTx_Thrd.cpp
  15.  *
  16.  * Project:
  17.  * --------
  18.  *   Maui META APP
  19.  *
  20.  * Description:
  21.  * ------------
  22.  *  RF multislot TX thread source
  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. //---------------------------------------------------------------------------
  41. #include <vcl.h>
  42. #pragma hdrstop
  43. // equipment
  44. #include "ageCommon.h"
  45. #include "age1968A.h"
  46. #include "cmu200.h"
  47. #ifndef  _RCT_COMMON_H_
  48. #include "rct_common.h"
  49. #endif
  50. #ifndef _RF_MULTISLOT_TX_THRD_H_
  51. #include "rf_multislotTx_thrd.h"
  52. #endif
  53. //==============================================================================
  54. //==============================================================================
  55. void _fastcall CMultiSlotTxThrd::ShowMsg()
  56. {
  57.     ShowMessage( as_Msg );
  58. }
  59. //------------------------------------------------------------------------------
  60. void _fastcall CMultiSlotTxThrd::SyncShowMsg(AnsiString as)
  61. {
  62.     as_Msg = as;
  63.     Synchronize( ShowMsg );
  64. }
  65. //=========================================================================================
  66. __fastcall CMultiSlotTxThrd::CMultiSlotTxThrd(
  67.                                            bool CreateSuspended                                           
  68.                                           ): TThread(CreateSuspended)
  69. {
  70.    
  71.     
  72. }
  73. //---------------------------------------------------------------------------
  74. void __fastcall CMultiSlotTxThrd::Execute()
  75. {
  76.     
  77. }