Windows2000/private/shell/applets/cleanup/cleanmgr/seldrive.h
2020-09-30 17:12:32 +02:00

54 lines
647 B
C

/*
** Module: Disk Space Cleanup Manager
** File: seldrive.h
**
** Purpose: Code that implements the "Select Drive" dialog
**
** Notes:
** Mod Log: Created by Jason Cobb (12/97)
**
** Copyright (c)1997 Microsoft Corporation, All Rights Reserved
*/
#ifndef SELDRIVE_H
#define SELDRIVE_H
/*
** Project include files
*/
#include "common.h"
#include "diskutil.h"
/*
** Typedefs
*/
typedef enum // drvlist
{
dvlANYLOCAL // any non-network, non-CDRom drive
} drvlist;
/*
** Prototypes
*/
BOOL
SelectDrive(
PTSTR szDrive,
drvlist dvl
);
void
GetBootDrive(
PTCHAR pDrive,
DWORD Size
);
#endif