34 lines
618 B
C++
34 lines
618 B
C++
|
//
|
||
|
// Universal Resource Consumer: Just an innocent stress program
|
||
|
// Copyright (c) Microsoft Corporation, 1997, 1998, 1999
|
||
|
//
|
||
|
|
||
|
//
|
||
|
// header: disk.hxx
|
||
|
// author: silviuc
|
||
|
// created: Mon Apr 13 14:03:45 1998
|
||
|
//
|
||
|
|
||
|
#ifndef _DISK_HXX_INCLUDED_
|
||
|
#define _DISK_HXX_INCLUDED_
|
||
|
|
||
|
//
|
||
|
// Function:
|
||
|
//
|
||
|
// ConsumeAllDiskSpace
|
||
|
//
|
||
|
// Description:
|
||
|
//
|
||
|
// This function consumes all disk space on the current
|
||
|
// partition (the one from which `consume' has been launched).
|
||
|
//
|
||
|
|
||
|
void ConsumeAllDiskSpace ();
|
||
|
|
||
|
// ...
|
||
|
#endif // #ifndef _DISK_HXX_INCLUDED_
|
||
|
|
||
|
//
|
||
|
// end of header: disk.hxx
|
||
|
//
|