| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- // Borland C++ Builder
- // Copyright (c) 1995, 2002 by Borland Software Corporation
- // All rights reserved
- // (DO NOT EDIT: machine generated header) 'CompThread.pas' rev: 6.00
- #ifndef CompThreadHPP
- #define CompThreadHPP
- #pragma delphiheader begin
- #pragma option push -w-
- #pragma option push -Vx
- #include <Windows.hpp> // Pascal unit
- #include <Classes.hpp> // Pascal unit
- #include <SysInit.hpp> // Pascal unit
- #include <System.hpp> // Pascal unit
- //-- user supplied -----------------------------------------------------------
- namespace Compthread
- {
- //-- type declarations -------------------------------------------------------
- class DELPHICLASS TCompThread;
- class PASCALIMPLEMENTATION TCompThread : public System::TObject
- {
- typedef System::TObject inherited;
-
- private:
- unsigned FHandle;
- unsigned FThreadID;
- bool FTerminated;
- bool FSuspended;
- bool FFreeOnTerminate;
- bool FFinished;
- int FReturnValue;
- Classes::TNotifyEvent FOnTerminate;
- Classes::TThreadMethod FMethod;
- System::TObject* FSynchronizeException;
- void __fastcall CallOnTerminate(void);
- Classes::TThreadPriority __fastcall GetPriority(void);
- void __fastcall SetPriority(Classes::TThreadPriority Value);
- void __fastcall SetSuspended(bool Value);
-
- protected:
- virtual void __fastcall DoTerminate(void);
- virtual void __fastcall Execute(void) = 0 ;
- void __fastcall Synchronize(Classes::TThreadMethod Method);
- __property int ReturnValue = {read=FReturnValue, write=FReturnValue, nodefault};
- __property bool Terminated = {read=FTerminated, nodefault};
-
- public:
- __fastcall TCompThread(bool CreateSuspended);
- __fastcall virtual ~TCompThread(void);
- void __fastcall Resume(void);
- void __fastcall Suspend(void);
- virtual void __fastcall Terminate(void);
- bool __fastcall WaitFor(unsigned Milliseconds = (unsigned)(0xffffffff));
- __property bool FreeOnTerminate = {read=FFreeOnTerminate, write=FFreeOnTerminate, nodefault};
- __property unsigned Handle = {read=FHandle, nodefault};
- __property Classes::TThreadPriority Priority = {read=GetPriority, write=SetPriority, nodefault};
- __property bool Suspended = {read=FSuspended, write=SetSuspended, nodefault};
- __property unsigned ThreadID = {read=FThreadID, nodefault};
- __property Classes::TNotifyEvent OnTerminate = {read=FOnTerminate, write=FOnTerminate};
- };
- //-- var, const, procedure ---------------------------------------------------
- } /* namespace Compthread */
- using namespace Compthread;
- #pragma option pop // -w-
- #pragma option pop // -Vx
- #pragma delphiheader end.
- //-- end unit ----------------------------------------------------------------
- #endif // CompThread
|