File:  [RetroPC.NET] / xmil / fdd / diskdrv.c
Revision 1.5: download - view: text, annotated - select for diffs
Tue Jun 3 05:07:31 2008 JST (17 years, 4 months ago) by yui
Branches: MAIN
CVS tags: HEAD
change to c style comment

/* フロッピーディスクの挿入延滞用のブリッヂ */

#include	"compiler.h"
#include	"sysmng.h"
#include	"diskdrv.h"
#include	"fddfile.h"


void diskdrv_setfddex(REG8 drv, const OEMCHAR *fname,
												UINT32 ftype, int readonly) {

	fddfile_eject(drv);
	if (fname) {
		fddfile_set(drv, fname, ftype, readonly);
	}
	sysmng_update(SYS_UPDATEFDD);
}

#if 0
void diskdrv_callback(void) { }
#endif	/* 0 */

RetroPC.NET-CVS <cvs@retropc.net>