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

  1. #if !defined( _NTFS_BOOT_EDIT_ )
  2. #define _NTFS_BOOT_EDIT_
  3. #include "edit.hxx"
  4. DECLARE_CLASS( NTFS_BOOT_EDIT );
  5. class NTFS_BOOT_EDIT : public EDIT_OBJECT {
  6. public:
  7. VIRTUAL
  8. VOID
  9. SetBuf(
  10. IN HWND WindowHandle,
  11. IN OUT PVOID Buffer,
  12. IN ULONG Size DEFAULT 0
  13. );
  14. VIRTUAL
  15. VOID
  16. Paint(
  17. IN HDC DeviceContext,
  18. IN RECT InvalidRect,
  19. IN HWND WindowHandle
  20. );
  21. private:
  22. PVOID _buffer;
  23. ULONG _size;
  24. };
  25. #endif