unit Win32COS; interface uses Windows; const InterfaceTypeUndefined = -1; Internal = 0; Isa = 1; Eisa = 2; MicroChannel = 3; TurboChannel = 4; PCIBus = 5; VMEBus = 6; NuBus = 7; PCMCIABus = 8; CBus = 9; MPIBus = 10; MPSABus = 11; ProcessorInternal = 12; InternalPowerBus = 13; PNPISABus = 14; MaximumInterfaceType = 15; function InitCOSDriver(Addr: DWord; IRQ: Byte; BusType: SmallInt; BusNumber: Byte): ByteBool; cdecl; external 'Win32COS.dll'; function GetCOSData(Buf : Pointer): ByteBool; cdecl; external 'Win32COS.dll'; function AbortCOSRequest: ByteBool; cdecl; external 'Win32COS.dll'; implementation end.