Delphi-PRAXiS
Seite 1 von 4  1 23     Letzte »    

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Win32/Win64 API (native code) (https://www.delphipraxis.net/17-win32-win64-api-native-code/)
-   -   Delphi openlibsys.org Open source driver (https://www.delphipraxis.net/113252-openlibsys-org-open-source-driver.html)

Razor 5. Mai 2008 11:25


openlibsys.org Open source driver
 
I found the driver! http://openlibsys.org/

-Supports all the things i want...
-Supports delphi wich is nice! :lol:

mkinzler 5. Mai 2008 11:33

Re: openlibsys.org Open source driver
 
A driver for what?

Muetze1 5. Mai 2008 15:25

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.

mkinzler 5. Mai 2008 15:43

Re: openlibsys.org Open source driver
 
But it would be nice from him to describes it, if he put a link in this forum

Razor 5. Mai 2008 18:23

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
http://openlibsys.org/manual/

mkinzler 5. Mai 2008 18:27

Re: openlibsys.org Open source driver
 
Muetze1's answer adressing me not you

Razor 5. Mai 2008 18:31

Re: openlibsys.org Open source driver
 
I had to say it once it for all.I had enough..

Muetze1 5. Mai 2008 19:39

Re: openlibsys.org Open source driver
 
Zitat:

Zitat von Razor
Muetze why are you mean,...

That should not be meant mean, it was just some hint, because your threads should be well known here, so I was wondering about the question. You will do your thing and I am proud to see, that you learned some things and even the basics (the biggest problem some times before), so I am anxious to see your next threads and questions. So, keep up and do your project...

Razor 5. Mai 2008 19:58

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

Razor 5. Mai 2008 23:32

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:50 Uhr.
Seite 1 von 4  1 23     Letzte »    

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz