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.
 
 
 
 
 
 

36 lines
641 B

#if !defined( _NTFS_BOOT_EDIT_ )
#define _NTFS_BOOT_EDIT_
#include "edit.hxx"
DECLARE_CLASS( NTFS_BOOT_EDIT );
class NTFS_BOOT_EDIT : public EDIT_OBJECT {
public:
VIRTUAL
VOID
SetBuf(
IN HWND WindowHandle,
IN OUT PVOID Buffer,
IN ULONG Size DEFAULT 0
);
VIRTUAL
VOID
Paint(
IN HDC DeviceContext,
IN RECT InvalidRect,
IN HWND WindowHandle
);
private:
PVOID _buffer;
ULONG _size;
};
#endif