mirror of https://github.com/lianthony/NT4.0
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.
48 lines
897 B
48 lines
897 B
/*++
|
|
|
|
Copyright (c) 1993 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
cudbfs.hxx
|
|
|
|
Abstract:
|
|
|
|
This module contains function prototypes for the DBFS conversion
|
|
functions.
|
|
|
|
Author:
|
|
|
|
Matthew Bradburn (mattbr) 24-Nov-1993
|
|
|
|
Environment:
|
|
|
|
ULIB, User Mode
|
|
|
|
--*/
|
|
|
|
#include "ulib.hxx"
|
|
#include "message.hxx"
|
|
#include "wstring.hxx"
|
|
#include "ifsentry.hxx"
|
|
|
|
extern "C"
|
|
BOOLEAN FAR APIENTRY
|
|
ConvertDBFS(
|
|
IN PCWSTRING NtDriveName,
|
|
IN PCWSTRING HostFileName,
|
|
IN OUT PMESSAGE Message,
|
|
IN BOOLEAN Verbose,
|
|
OUT PCONVERT_STATUS Status
|
|
);
|
|
|
|
extern "C"
|
|
BOOLEAN FAR APIENTRY
|
|
CheckFreeSpaceDBFS(
|
|
IN PCWSTRING NtDriveName,
|
|
IN PCWSTRING HostFileName,
|
|
IN OUT PMESSAGE Message,
|
|
IN BOOLEAN Verbose,
|
|
IN BOOLEAN HostIsCompressed,
|
|
IN BOOLEAN WillConvertHost
|
|
);
|