AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Zurück Delphi-PRAXiS Projekte [Tool] GPU - Temperaturanzeige (für nVidia Grafikkarten.)
Thema durchsuchen
Ansicht
Themen-Optionen

[Tool] GPU - Temperaturanzeige (für nVidia Grafikkarten.)

Ein Thema von turboPASCAL · begonnen am 22. Jul 2007 · letzter Beitrag vom 2. Nov 2008
Antwort Antwort
Seite 8 von 23   « Erste     678 91018     Letzte »    
Muetze1
(Gast)

n/a Beiträge
 
#1

Re: [Tool] GPU - Temperaturanzeige (fur nVidia Grafikkarten.

  Alt 8. Aug 2007, 18:27
Zitat von Razor:
Okay i found a dll for temperature and overclocking fur ati and nvidia cards,but i also have source(.h and .cpp) tell me where to search parameters and other crap to call it in delphi later.
Search for the parameter of the DLL you found or for the DLL from ATI?
  Mit Zitat antworten Zitat
Razor
(Gast)

n/a Beiträge
 
#2

Re: [Tool] GPU - Temperaturanzeige (fur nVidia Grafikkarten.

  Alt 8. Aug 2007, 20:19
Okay i uploaded the whole thing source and dll.
Angehängte Dateien
Dateityp: rar vt1103_996.rar (18,8 KB, 29x aufgerufen)
  Mit Zitat antworten Zitat
Muetze1
(Gast)

n/a Beiträge
 
#3

Re: [Tool] GPU - Temperaturanzeige (fur nVidia Grafikkarten.

  Alt 9. Aug 2007, 00:02
I need the implementation for the following used functions:

Delphi-Quellcode:
      //get ptrs to required plugin API functions

      g_pLocalizeWnd      = (LOCALIZEWND_PROC)GetProcAddress(hHost, "LocalizeWnd");
      g_pLocalizeStr      = (LOCALIZESTR_PROC)GetProcAddress(hHost, "LocalizeStr");

      g_pGetDeviceID      = (GET_DEVICE_ID_PROC)GetProcAddress(hHost, "GetDeviceID");
      if (!g_pGetDeviceID)
         return FALSE;

      g_pGetI2CBusNum      = (GET_I2C_BUS_NUM_PROC)GetProcAddress(hHost, "GetI2CBusNum");
      if (!g_pGetI2CBusNum)
         return FALSE;

      g_pReadI2C         = (READ_I2C_PROC)GetProcAddress(hHost, "ReadI2C");
      if (!g_pReadI2C)
         return FALSE;

      g_pWriteI2C         = (WRITE_I2C_PROC)GetProcAddress(hHost, "WriteI2C");
      if (!g_pWriteI2C)
         return FALSE;
So, basicly I need "GetDeviceID", "GetI2CBusNum", "ReadI2C" and "WriteI2C".
  Mit Zitat antworten Zitat
Razor
(Gast)

n/a Beiträge
 
#4

Re: [Tool] GPU - Temperaturanzeige (fur nVidia Grafikkarten.

  Alt 9. Aug 2007, 06:49
Ok this is everything you need...i uploaded everything.
Angehängte Dateien
Dateityp: rar sdk_766.rar (382,9 KB, 20x aufgerufen)
  Mit Zitat antworten Zitat
Muetze1
(Gast)

n/a Beiträge
 
#5

Re: [Tool] GPU - Temperaturanzeige (fur nVidia Grafikkarten.

  Alt 9. Aug 2007, 09:45
Sorry, but this doesn't help. The requested functions are exported by RivaTuner. If you require RivaTuner to be installed, you can translate the given VT1103 source to Delphi.
  Mit Zitat antworten Zitat
Razor
(Gast)

n/a Beiträge
 
#6

Re: [Tool] GPU - Temperaturanzeige (fur nVidia Grafikkarten.

  Alt 9. Aug 2007, 09:50
no i do not require riva tuner to be installed i want to call functions.

Ok i uploaded what you need...Check it out.
Angehängte Dateien
Dateityp: h rivatunerexports_708.h (4,8 KB, 12x aufgerufen)
  Mit Zitat antworten Zitat
Muetze1
(Gast)

n/a Beiträge
 
#7

Re: [Tool] GPU - Temperaturanzeige (fur nVidia Grafikkarten.

  Alt 9. Aug 2007, 10:18
Zitat von Razor:
Ok i uploaded what you need...Check it out.
That's not what I need (and also included in the SDK.zip). This file contains only the declaration of the needed function but not the implementation. I need the code that's behind these functions. This needed code is compiled inside of the RivaTuner binary.

Solution:

1. You get the source code of the posted functions directly from the RivaTuner source code.

or

2. You require RivaTuner to be installed to use your tool. Then you can use the functions directly from RivaTuner.
  Mit Zitat antworten Zitat
hathor
(Gast)

n/a Beiträge
 
#8

Re: [Tool] GPU - Temperaturanzeige (fur nVidia Grafikkarten.

  Alt 9. Aug 2007, 10:32
I'm missing in SDK\Samples\Plugins\Monitoring C2DTemp.
There it is:
Angehängte Dateien
Dateityp: rar c2dtemp_361.rar (4,3 KB, 15x aufgerufen)
  Mit Zitat antworten Zitat
OlafSt

Registriert seit: 2. Mär 2007
Ort: Hamburg
284 Beiträge
 
Delphi 10.2 Tokyo Professional
 
#9

Re: [Tool] GPU - Temperaturanzeige (fur nVidia Grafikkarten.

  Alt 9. Aug 2007, 10:33
All the files and sources you have uploaded here are from the RivaTuner-SDK. With them you can create a Plugin-DLL for Rivatuner. Of course we can see some interesting calls here - but the routines are INSIDE of RivaTuner.EXE (and thus exported from there). You WILL need RivaTuner running on the system to get these things working (or the source of RT, which is not available AFAIK).


I'm the founder of STLCD, a fairly well known LCD-Software here in Germany. And I'm looking for the same infos about ATI-Cards like you - for two years now. I know what I'm talking about, there will be no more information to find.
  Mit Zitat antworten Zitat
Razor
(Gast)

n/a Beiträge
 
#10

Re: [Tool] GPU - Temperaturanzeige (fur nVidia Grafikkarten.

  Alt 9. Aug 2007, 11:52
Alright sorry for buggin you all


When i debuged the atipdlxx.dll i found some interested things


; int __cdecl ATIDL_GetTemperature(DWORD iDevNum,int,int,int)



; int __cdecl ATIDL_GetFanSpeed(DWORD iDevNum,int,int,int)



You wanted parameters here you have them
  Mit Zitat antworten Zitat
Antwort Antwort
Seite 8 von 23   « Erste     678 91018     Letzte »    


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 12:05 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