|
||
void get_drive ( int *current_drive )
int *current_drive; // address of integer to receive disk drive number
|
|
|
Synopsis |
#include "silver.h"
The get_drive function obtains the current disk drive number. The current drive is copied into the integer pointed to by current_drive , with values as specified by 1 = drive A, 2 = drive B, 3 = drive C, and so on.
|
|
Parameters |
current_drive is the address of an integer to receive the disk drive number.
|
|
Return Value |
none.
|
|
|
|