reactos/reactos/base/applications/cmdutils/fsutil/fsutil.h
Pierre Schweitzer 7f463d43db [FSUTIL]
Add a skeleton for the fsutil tool.
As a proof of concept, implement fsutil dirty query.
More to follow ;-).

svn path=/trunk/; revision=75764
2017-09-05 12:56:45 +00:00

16 lines
245 B
C

#ifndef __FSUTIL_H__
#define __FSUTIL_H__
#include <windows.h>
#include <tchar.h>
#include <stdio.h>
typedef struct
{
int (*Handler)(int argc, const TCHAR *argv[]);
const TCHAR * Command;
const TCHAR * Desc;
} HandlerItem;
#endif