home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
borland
/
cb
/
setup
/
cbuilder
/
data.z
/
VIRTINTF.HPP
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-28
|
2KB
|
68 lines
//----------------------------------------------------------------------------
// VirtIntf.hpp - bcbdcc32 generated hdr (DO NOT EDIT) rev: 0
// From: VirtIntf.pas
//----------------------------------------------------------------------------
#ifndef VirtIntfHPP
#define VirtIntfHPP
//----------------------------------------------------------------------------
#include <System.hpp>
#pragma warn -par
#pragma warn -hid
#pragma warn -inl
namespace Virtintf
{
//-- type declarations -------------------------------------------------------
class __declspec(delphiclass) TInterface;
class __declspec(pascalimplementation) TInterface : public System::TObject
{
typedef System::TObject inherited;
private:
long FRefCount;
public:
__fastcall TInterface(void);
HIDESBASE void __fastcall Free(void);
virtual long __stdcall AddRef(void);
virtual long __stdcall Release(void);
virtual int __stdcall GetVersion(void);
public:
/* TObject.Destroy */ __fastcall virtual ~TInterface(void) { }
};
class __declspec(delphiclass) TIStream;
class __declspec(pascalimplementation) TIStream : public TInterface
{
typedef TInterface inherited;
public:
virtual long __stdcall Read(void *Buffer, long Count) = 0;
virtual long __stdcall Write(const void *Buffer, long Count) = 0;
virtual long __stdcall Seek(long Offset, Word Origin) = 0;
virtual long __stdcall GetModifyTime(void) = 0;
virtual void __stdcall SetModifyTime(long Time) = 0;
public:
/* TInterface.Create */ __fastcall TIStream(void) : Virtintf::TInterface() { }
public:
/* TObject.Destroy */ __fastcall virtual ~TIStream(void) { }
};
//-- var, const, procedure ---------------------------------------------------
extern System::AnsiString __fastcall ReleaseException(void);
} /* namespace Virtintf */
#pragma warn .par
#pragma warn .hid
#pragma warn .inl
#if !defined(NO_IMPLICIT_NAMESPACE_USE)
using namespace Virtintf;
#endif
//-- end unit ----------------------------------------------------------------
#endif // VirtIntf