![]() |
openlibsys.org Open source driver
I found the driver!
![]() -Supports all the things i want... -Supports delphi wich is nice! :lol: |
Re: openlibsys.org Open source driver
A driver for what?
|
Re: openlibsys.org Open source driver
For his CPU detection, temperature, GPU, I2C, bla blubb tool. Just collect all his threads and combine the questions and you will find the answer.
|
Re: openlibsys.org Open source driver
But it would be nice from him to describes it, if he put a link in this forum
|
Re: openlibsys.org Open source driver
Muetze why are you mean,i just don't get it.I put it on this forum in sense that other people achive the same thing if they need it.And yes in some days i'll combine everything and post it as one topic while moderators can delete those topics.Just that you can be happy! :zwinker:
I don't see such project for delphi atleast that Gpu tool for Nvidia by turboPASCAL.Here it ends. And no Muetze not for CPU Detection..I think you have a bit more knowledge in this case..I won't argue with you couse we all know that you aren't an easy person that just dosen't like to help. As for the driver -What is it> WinRing0 is a hardware access library for Windows. WinRing0 provides your application to access I/O port, MSR, PCI bus, and etc... -Manual ![]() |
Re: openlibsys.org Open source driver
Muetze1's answer adressing me not you
|
Re: openlibsys.org Open source driver
I had to say it once it for all.I had enough..
|
Re: openlibsys.org Open source driver
Zitat:
|
Re: openlibsys.org Open source driver
The problem was the driver all in all,since delphi isnt notorious for making drivers i seeked outside for some.
And i face a new problem X64 Vista Driver signing... The solution..Wich i am going to use. One of the more annoying components in Vista x64 is the need for signed drivers. This hinders the use of many freeware applications out there (even though they come with an x64 driver) just because the driver isn’t digitally signed. About a month ago I ran into a piece of software I had to use, but alas, no signed drivers. So I set out on a quest to figure out how to permanently disable the driver signing checks in Vista x64. And guess what? I found it :). Here’s how to get it done: Open an elevated command prompt type “bcdedit /set loadoptions DDISABLE_INTEGRITY_CHECKS” without the quotes (and no the DD is not a typo). Reboot and enjoy being able to use unsigned drivers in Vista x64. Remember who told you about this first ;). Voila! :P |
Re: openlibsys.org Open source driver
I made this but it dosen't seem to work....I bet i forgot something,some stupid mistake or i forgot to put in the params.
Delphi-Quellcode:
unit Unit1;
interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Button1: TButton; procedure koki; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end; const RING0 = 'WinRing0x64.DLL'; var Form1: TForm1; RING0: THandle; implementation {$R *.dfm} procedure tform1.koki; VAR ho: AnsiString; begin ho := ExtractFilePath(application.ExeName) + 'WinRing0x64.DLL'; if FileExists(ho) then begin RING0 := LoadLibrary(PChar(Pfad)); if RING0 > 0 then showmessage('loaded'); end; end; procedure TForm1.Button1Click(Sender: TObject); begin koki; end; end. |
Alle Zeitangaben in WEZ +1. Es ist jetzt 00:41 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