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.
40 lines
813 B
40 lines
813 B
/***
|
|
*drivemap.c - _getdrives
|
|
*
|
|
* Copyright (c) 1991-2001, Microsoft Corporation. All rights reserved.
|
|
*
|
|
*Purpose:
|
|
* defines _getdrives()
|
|
*
|
|
*Revision History:
|
|
* 08-22-91 BWM Wrote module.
|
|
* 04-06-93 SKS Replace _CRTAPI* with _cdecl
|
|
*
|
|
*******************************************************************************/
|
|
|
|
#include <cruntime.h>
|
|
#include <oscalls.h>
|
|
#include <direct.h>
|
|
|
|
#if !defined(_WIN32)
|
|
#error ERROR - ONLY WIN32 TARGET SUPPORTED!
|
|
#endif
|
|
|
|
/***
|
|
*void _getdrivemap(void) - Get bit map of all available drives
|
|
*
|
|
*Purpose:
|
|
*
|
|
*Entry:
|
|
*
|
|
*Exit:
|
|
* drive map with drive A in bit 0, B in 1, etc.
|
|
*
|
|
*Exceptions:
|
|
*
|
|
*******************************************************************************/
|
|
|
|
unsigned long __cdecl _getdrives()
|
|
{
|
|
return (GetLogicalDrives());
|
|
}
|