home *** CD-ROM | disk | FTP | other *** search
- #include <fpclib.h>
- #include <string.h>
- #include <memory.h>
-
-
- void GetVolumneId( char *label );
-
-
- void GetVolumneId( label )
- char *label;
- {
- TFindRec findrec;
-
- memset( label, '\0', 14 );
- DosFindFirst( "C:\\*.*", 8, &findrec );
- strcpy( label, ( CHAR * ) findrec.Name );
-
- }
-
-
- void main( void )
- {
- char label[14];
-
- GetVolumneId( label );
- }