WindowsXP/Source/XPSP1/NT/sdktools/diskmon/diskmon.h
2024-08-03 16:30:48 +02:00

65 lines
988 B
C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>
#include <ntdddisk.h>
#include <windows.h>
#include "id.h"
typedef struct _DISK {
HANDLE handle;
PDISK_PERFORMANCE start;
PDISK_PERFORMANCE current;
PDISK_PERFORMANCE previous;
ULONG AveBPS;
ULONG MaxBPS;
ULONG BytesRead;
ULONG BytesWritten;
UINT QDepth;
UINT MaxQDepth;
INT MenuId;
CHAR DrvString[16];
CHAR Identifier[24];
struct _DISK *next;
} DISK, *PDISK;
BOOL
InitApplication(
HANDLE
);
BOOL
InitInstance(
HANDLE,
int
);
LRESULT CALLBACK
WndProc(
HWND,
UINT,
WPARAM,
LPARAM
);
LRESULT CALLBACK
DiskmonWndProc(
HWND hWnd,
UINT message,
WPARAM uParam,
LPARAM lParam
);
BOOL CALLBACK
ConfigMonitor(
HWND hDlg,
UINT Msg,
WPARAM wParam,
LPARAM lParam
);