代码搜索:drive 有哪些应用?
找到约 10,000 项符合「drive 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/131795/14127412
dat funtc80.dat
函数名称: abswrite
函数原型: int abswrite(int drive, int nsects, int sectnum, void *buffer)
函数功能: 对磁盘扇区写数据.
函数返回: 0-操作成功,其他-操作失败
函数说明: driver 写入的驱动器号 0-表示驱动器A,以此类推
www.eeworm.com/read/131510/14142854
makefile
# FreeDOS Editor Makefile
# By Joe Cosentino and Jeremy Davis
#
# For use with Turbo C 2.01, Turbo C++ 1.01, Turbo C/C++ 3.0, and
# Borland C/C++ 3.1
#
all : edit.exe edit.hlp
#------------
www.eeworm.com/read/233558/14146961
c ata.c
/*! \file ata.c \brief IDE-ATA hard disk interface driver. */
//*****************************************************************************
//
// File Name : 'ata.c'
// Title : IDE-ATA interfac
www.eeworm.com/read/130851/14172683
asm fs.asm
; Hard disk filesystem
; Chris Ward, 21/1/2000
;partition table filesystem codes
FS_HDFS EQU 01
HDFSVER EQU 01 ;filesystem version
MAGPART fcs "CNWPART" ;magic word for partition table
MA
www.eeworm.com/read/130553/14186169
c getvol.c
/*
** GETVOL.C - Retrieve a disk volume label
** (proof you don't need FCBs to do it!)
**
** public domain demo by Bob Stout
*/
#include
#include
#include
www.eeworm.com/read/130553/14186264
c drvalid.c
/*
** DRVALID.C - validate disk drives
**
** Original Copyright 1988-1991 by Bob Stout as part of
** the MicroFirm Function Library (MFL)
**
** This subset version is functionally identical
www.eeworm.com/read/130553/14186547
c getdcwd.c
/*
** GETDCWD.C - returns the current working directory for a specific drive
**
** public domain by Bob Jarvis, modified by Bob Stout
*/
#if defined(__ZTC__)
#define GetDrive(d) dos_getdrive(
www.eeworm.com/read/130553/14186611
c isramdsk.c
/*
** isRamDsk() - Determine if a drive is a RAM disk
**
** Call with drive letter ('a' - 'z', 'A' - 'Z')
**
** Returns TRUE, FALSE, or ERROR
**
** Uses ABSDISKC.C, ABSDISK.ASM, and DOS5BOO
www.eeworm.com/read/130553/14186981
c iswprot.c
/*
** ISWPROT.C - Detect if floppy drive is write protected
**
** public domain by Bob Stout
*/
#include
#ifdef __TURBOC__
#define FAR far
#else
#define FAR _far
#endif
/*