Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

58 lines
850 B

/*++
Copyright (c) 1999-2000 Microsoft Corporation
Module Name :
File.h
Author :
JoyC 11/10/1999
Abstract:
RDPDr File object handles mini-redirector specific file information
Revision History:
--*/
#pragma once
class DrFile : public RefCount
{
protected:
ULONG _FileId;
ULONG _BufferSize;
PBYTE _Buffer;
SmartPtr<DrDevice> _Device;
public:
DrFile(SmartPtr<DrDevice> &Device, ULONG FileId);
~DrFile();
PBYTE AllocateBuffer(ULONG size);
void FreeBuffer();
ULONG GetFileId()
{
return _FileId;
}
void SetFileId(ULONG FileId)
{
_FileId = FileId;
}
PBYTE GetBuffer()
{
return _Buffer;
}
ULONG GetBufferSize()
{
return _BufferSize;
}
};