Re: Comparing functions
29. Aug 2007, 17:34
[delphi]Alright alright and thanks buuut
[pre]procedure GetPCIRDWord(dwBus, dwDev, dwFunc, offs: byte; var pdata: Cardinal);
procedure SetPCIRDWord(dwBus, dwDev, dwFunc, offs: byte; pdata: Cardinal);
omcdrv.GetPCIRDWord(0,24,$03,$E4,pdata); [/pre]
[pre]var
dwresult:dword;
function GetPCRD(Bus, Dev, Func, Reg : byte): dword;
procedure SetPCRD(Bus, Dev, Func, Reg : byte; value : dword);
dwResult:=GetPCRD(0,24,$03,$E4); [/pre]
Now how in heaven can i change this this arent theh same functions...
|