32 lines
809 B
C
32 lines
809 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"
|
|
|
|
// pszDrive in/out param
|
|
BOOL SelectDrive(LPTSTR pszDrive);
|
|
|
|
void GetBootDrive(PTCHAR pDrive, DWORD Size);
|
|
|
|
#endif
|
|
|