| Thread overview | |||||||
|---|---|---|---|---|---|---|---|
|
April 22, 2004 Where Can I Download bios.h ? | ||||
|---|---|---|---|---|
| ||||
I need a copy of the bios.h header file. Does anyone know where I may find this? Can it be emailed to me? Thanks Andrew | ||||
April 22, 2004 Re: Where Can I Download bios.h ? | ||||
|---|---|---|---|---|
| ||||
Posted in reply to Andrew Zaydak | bios.h comes on the CD version of DMC/C++ available from www.digitalmars.com/shop.html -Walter "Andrew Zaydak" <Andrew_member@pathlink.com> wrote in message news:c677mr$2uk$1@digitaldaemon.com... > I need a copy of the bios.h header file. Does anyone know where I may find > this? Can it be emailed to me? > > Thanks > Andrew | |||
April 22, 2004 Re: Where Can I Download bios.h ? | ||||
|---|---|---|---|---|
| ||||
Posted in reply to Andrew Zaydak | What compiler are you using? David In article <c677mr$2uk$1@digitaldaemon.com>, Andrew Zaydak says... > >I need a copy of the bios.h header file. Does anyone know where I may find this? Can it be emailed to me? > >Thanks >Andrew | |||
July 23, 2007 Re: Where Can I Download bios.h ? | ||||
|---|---|---|---|---|
| ||||
Posted in reply to Walter | /* bios.h
Access to bios services.
Copyright (c) Borland International 1987,1988,1990
All Rights Reserved.
*/
#if __STDC__
#define _Cdecl
#else
#define _Cdecl cdecl
#endif
#ifndef __PAS__
#define _CType _Cdecl
#else
#define _CType pascal
#endif
#ifdef __cplusplus
extern "C" {
#endif
int _Cdecl bioscom(int __cmd, char __abyte, int __port);
int _Cdecl biosdisk(int __cmd, int __drive, int __head, int
__track, int __sector,
int __nsects, void *__buffer);
int _Cdecl biosequip(void);
int _Cdecl bioskey(int __cmd);
int _Cdecl biosmemory(void);
int _Cdecl biosprint(int __cmd, int __abyte, int __port);
long _Cdecl biostime(int __cmd, long __newtime);
#ifdef __cplusplus
}
#endif
| |||
Copyright © 1999-2021 by the D Language Foundation
Permalink
Reply