AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Thema durchsuchen
Ansicht
Themen-Optionen

Gigabyte dll functions

Ein Thema von Razor · begonnen am 11. Aug 2007 · letzter Beitrag vom 29. Aug 2007
Antwort Antwort
Seite 4 von 4   « Erste     234   
Razor
(Gast)

n/a Beiträge
 
#1

Re: Gigabyte dll functions

  Alt 24. Aug 2007, 12:49
Can you help me with other functions
  Mit Zitat antworten Zitat
Olli
(Gast)

n/a Beiträge
 
#2

Re: Gigabyte dll functions

  Alt 24. Aug 2007, 19:48
How much do you pay per hour?

I can try, but my spare time is limited anyway, so I'd prefer you forward only those parts you really can't solve yourself. Please do it via the forum anyway, so other can benefit from the findings.
  Mit Zitat antworten Zitat
Razor
(Gast)

n/a Beiträge
 
#3

Re: Gigabyte dll functions

  Alt 29. Aug 2007, 11:59
For me it returns -1 or false but i dont know for accual users that have gigabyte board.So you may test it


Delphi-Quellcode:
interface

uses
  Fastmm4,Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;
    const
  w83781ddll = 'w83781d.dll';
type
  TForm1 = class(TForm)
    Label1: TLabel;
    procedure FormCreate(Sender: TObject);
    procedure FormClose(Sender: TObject; var Action: TCloseAction);
  private
    { Private declarations }
  public
    { Public declarations }
  end;
    function LX_IsGigaMainBoard : integer;external 'w83781d.dll';
var
  Form1: TForm1;
   hInstdll: THandle;
implementation

{$R *.dfm}

procedure TForm1.FormCreate(Sender: TObject);
begin
hInstdll := LoadLibrary(w83781ddll);
if LX_IsGigaMainBoard=-1 then
label1.caption:='you dont have a giga board!'
else if LX_IsGigaMainBoard=0 then
 label1.caption:='you do have a giga board!';
end;

procedure TForm1.FormClose(Sender: TObject; var Action: TCloseAction);
begin
FreeLibrary(hInstdll);
end;

end.
Angehängte Dateien
Dateityp: dll w83781d_205.dll (60,0 KB, 20x aufgerufen)
Dateityp: dll markfundrv_767.dll (112,0 KB, 21x aufgerufen)
  Mit Zitat antworten Zitat
Olli
(Gast)

n/a Beiträge
 
#4

Re: Gigabyte dll functions

  Alt 29. Aug 2007, 12:02
Zitat von Razor:
For me it returns -1 or false but i dont know for accual users that have gigabyte board.So you may test it
I don't have such a board anyway, but the function that you posted as disassembly before was pretty clear on that (if it was the complete body you posted).
  Mit Zitat antworten Zitat
Razor
(Gast)

n/a Beiträge
 
#5

Re: Gigabyte dll functions

  Alt 29. Aug 2007, 12:03
So other functions can be called in the same way?

LX_IsMSIMainBoard
LX_IsQDIMainBoard
  Mit Zitat antworten Zitat
Olli
(Gast)

n/a Beiträge
 
#6

Re: Gigabyte dll functions

  Alt 29. Aug 2007, 12:12
I'd have to see those. Perhaps you could send me the DLL in question and a (short!) list of functions you want deciphered (send it via PM in an archive).
  Mit Zitat antworten Zitat
Razor
(Gast)

n/a Beiträge
 
#7

Re: Gigabyte dll functions

  Alt 29. Aug 2007, 12:13
Dll is already attached,you get the short list of functions now!
  Mit Zitat antworten Zitat
Olli
(Gast)

n/a Beiträge
 
#8

Re: Gigabyte dll functions

  Alt 29. Aug 2007, 12:26
Delphi-Quellcode:
function LX_IsQDIMainBoard():LongBool; stdcall; // check against FALSE, same as LX_IsMSIMainBoard
function LX_IsMSIMainBoard():LongBool; stdcall; // check against FALSE, same as LX_IsQDIMainBoard
function LX_IsGigaMainBoard():LongBool; stdcall; // check against FALSE

Except for LX_IsGigaMainBoard those functions don't do anything.
  Mit Zitat antworten Zitat
Razor
(Gast)

n/a Beiträge
 
#9

Re: Gigabyte dll functions

  Alt 29. Aug 2007, 12:45
W_Get_VIDVcore1 can you look what does this function contain(pointers,parameters?)
  Mit Zitat antworten Zitat
Antwort Antwort
Seite 4 von 4   « Erste     234   


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 17:13 Uhr.
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz