blob: 8f450bd4d49b884397e2b3628f09f1f1a00756f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/*++
Copyright (c) 1991 Microsoft Corporation
Module Name:
winnt.h
Abstract:
This is the main header file for the Win32 sync command.
Author:
Mark Lucovsky (markl) 28-Jan-1991
Revision History:
--*/
#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>
#include <ntdddisk.h>
#include <windows.h>
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
int
ProcessParameters(
int argc,
char *argv[]
);
void
SyncVolume( PCHAR DrivePath, BOOLEAN EjectMedia );
|