资源简介

基于PC声卡的数据采集与分析程序 主要包括以下文件: Wavein.h Wavein.cpp Recorder.h Recorder.cpp Fft.h Fft.cpp

资源截图

代码片段和文件信息

#include “active.h“
//------------------------------------
//  active.cpp
//  Active object framework
//  (c) Bartosz Milewski 1996
//------------------------------------

// The constructor of the derived class
// should call
//    _thread.Resume ();
// at the end of construction

Activeobject::Activeobject ()
: _isDying (0)
#pragma warning(disable: 4355) // ‘this‘ used before initialized
  _thread (ThreadEntry this)
#pragma warning(default: 4355)
{
}

// FlushThread must reset all the events
// on which the thread might be waiting.

void Activeobject::Kill ()
{
    _isDying++;
    FlushThread ();
    // Let‘s make sure it‘s gone
    _thread.WaitForDeath ();
}

DWORD WINAPI Activeobject::ThreadEntry (void* pArg)
{
    Activeobject * pActive = (Activeobject *) pArg;
    pActive->InitThread ();
    pActive->Run ();
    return 0;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        883  1996-08-02 19:49  Freq(C++)\active.cpp

     文件        869  1998-04-13 14:55  Freq(C++)\active.h

     文件       5904  1996-09-15 11:31  Freq(C++)\Canvas.h

     文件       2916  2004-10-04 21:33  Freq(C++)\Cn700.com.txt

     文件       1017  1999-02-06 10:54  Freq(C++)\Complex.h

     文件        106  1995-12-21 15:49  Freq(C++)\const.h

     文件      10409  2000-10-28 13:44  Freq(C++)\Control.cpp

     文件       1193  2000-10-28 13:39  Freq(C++)\control.h

     文件       2046  1996-09-20 11:30  Freq(C++)\controls.cpp

     文件       6316  2000-10-28 13:39  Freq(C++)\Controls.h

     文件       2887  2000-10-28 13:42  Freq(C++)\Display.cpp

     文件       1241  2000-10-28 13:39  Freq(C++)\Display.h

     文件       4196  1996-10-19 14:40  Freq(C++)\Fft.cpp

     文件       1496  1996-10-19 14:40  Freq(C++)\Fft.h

     文件       1078  1996-03-20 21:05  Freq(C++)\fft.ico

     文件       4640  2000-10-28 13:51  Freq(C++)\fft.rc

     文件       5409  2000-10-28 12:03  Freq(C++)\Freq.dsp

     文件        531  2004-07-06 15:12  Freq(C++)\Freq.dsw

     文件       1248  2004-07-24 11:36  Freq(C++)\Freq.plg

     文件       1333  1997-12-02 14:33  Freq(C++)\Main.cpp

     文件        309  1996-09-16 18:20  Freq(C++)\main.h

     文件       2604  1996-09-15 01:40  Freq(C++)\metactrl.h

     文件        180  1996-06-01 12:55  Freq(C++)\params.h

     文件        223  2004-10-04 20:06  Freq(C++)\readme.htm

     文件         78  1997-06-05 16:30  Freq(C++)\readme.txt

     文件       2745  2000-10-28 13:42  Freq(C++)\Recorder.cpp

     文件       2839  2000-10-28 13:39  Freq(C++)\Recorder.h

     文件      65536  2004-07-24 11:36  Freq(C++)\Release\Freq.exe

     文件       1317  1997-12-02 14:33  Freq(C++)\resource.h

     文件       1270  1996-04-02 02:43  Freq(C++)\rs.bmp

............此处省略16个文件信息

评论

共有 条评论