Leaked source code of windows server 2003
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.
|
|
/*
**------------------------------------------------------------------------------ ** 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
|