Delphi-PRAXiS
Seite 8 von 23   « Erste     678 91018     Letzte »    

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Software-Projekte der Mitglieder (https://www.delphipraxis.net/26-software-projekte-der-mitglieder/)
-   -   [Tool] GPU - Temperaturanzeige (für nVidia Grafikkarten.) (https://www.delphipraxis.net/96312-%5Btool%5D-gpu-temperaturanzeige-fuer-nvidia-grafikkarten.html)

Muetze1 8. Aug 2007 18:27

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

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?

Razor 8. Aug 2007 20:19

Re: [Tool] GPU - Temperaturanzeige (fur nVidia Grafikkarten.
 
Liste der Anhänge anzeigen (Anzahl: 1)
Okay i uploaded the whole thing source and dll.

Muetze1 9. Aug 2007 00:02

Re: [Tool] GPU - Temperaturanzeige (fur nVidia Grafikkarten.
 
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".

Razor 9. Aug 2007 06:49

Re: [Tool] GPU - Temperaturanzeige (fur nVidia Grafikkarten.
 
Liste der Anhänge anzeigen (Anzahl: 1)
Ok this is everything you need...i uploaded everything.

Muetze1 9. Aug 2007 09:45

Re: [Tool] GPU - Temperaturanzeige (fur nVidia Grafikkarten.
 
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.

Razor 9. Aug 2007 09:50

Re: [Tool] GPU - Temperaturanzeige (fur nVidia Grafikkarten.
 
Liste der Anhänge anzeigen (Anzahl: 1)
no i do not require riva tuner to be installed i want to call functions.

Ok i uploaded what you need...Check it out.

Muetze1 9. Aug 2007 10:18

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

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.

hathor 9. Aug 2007 10:32

Re: [Tool] GPU - Temperaturanzeige (fur nVidia Grafikkarten.
 
Liste der Anhänge anzeigen (Anzahl: 1)
I'm missing in SDK\Samples\Plugins\Monitoring C2DTemp.
There it is:

OlafSt 9. Aug 2007 10:33

Re: [Tool] GPU - Temperaturanzeige (fur nVidia Grafikkarten.
 
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.

Razor 9. Aug 2007 11:52

Re: [Tool] GPU - Temperaturanzeige (fur nVidia Grafikkarten.
 
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


Alle Zeitangaben in WEZ +1. Es ist jetzt 10:58 Uhr.
Seite 8 von 23   « Erste     678 91018     Letzte »    

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