大家帮我看看c++ bulider 写的多线程,在delphi中怎么写??
大家帮我看看c++ bulider 写的多线程,在delphi中怎么写??
unit2.h文件
//---------------------------------------------------------------------------
#ifndef Unit2H
#define Unit2H
//---------------------------------------------------------------------------
#include <Classes.hpp>
//---------------------------------------------------------------------------
class TScanThread : public TThread
{
private:
protected:
void __fastcall Execute();
public:
__fastcall TScanThread(bool CreateSuspended);
};
//---------------------------------------------------------------------------
#endif