AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Zurück Delphi-PRAXiS Programmierung allgemein Win32/Win64 API (native code) Delphi openlibsys.org Open source driver
Thema durchsuchen
Ansicht
Themen-Optionen

openlibsys.org Open source driver

Ein Thema von Razor · begonnen am 5. Mai 2008 · letzter Beitrag vom 14. Aug 2009
Antwort Antwort
Seite 1 von 4  1 23     Letzte »    
Razor
(Gast)

n/a Beiträge
 
#1

openlibsys.org Open source driver

  Alt 5. Mai 2008, 11:25
I found the driver! http://openlibsys.org/

-Supports all the things i want...
-Supports delphi wich is nice!
  Mit Zitat antworten Zitat
mkinzler
(Moderator)

Registriert seit: 9. Dez 2005
Ort: Heilbronn
39.851 Beiträge
 
Delphi 11 Alexandria
 
#2

Re: openlibsys.org Open source driver

  Alt 5. Mai 2008, 11:33
A driver for what?
Markus Kinzler
  Mit Zitat antworten Zitat
Muetze1
(Gast)

n/a Beiträge
 
#3

Re: openlibsys.org Open source driver

  Alt 5. Mai 2008, 15:25
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.
  Mit Zitat antworten Zitat
mkinzler
(Moderator)

Registriert seit: 9. Dez 2005
Ort: Heilbronn
39.851 Beiträge
 
Delphi 11 Alexandria
 
#4

Re: openlibsys.org Open source driver

  Alt 5. Mai 2008, 15:43
But it would be nice from him to describes it, if he put a link in this forum
Markus Kinzler
  Mit Zitat antworten Zitat
Razor
(Gast)

n/a Beiträge
 
#5

Re: openlibsys.org Open source driver

  Alt 5. Mai 2008, 18:23
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!

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/
  Mit Zitat antworten Zitat
mkinzler
(Moderator)

Registriert seit: 9. Dez 2005
Ort: Heilbronn
39.851 Beiträge
 
Delphi 11 Alexandria
 
#6

Re: openlibsys.org Open source driver

  Alt 5. Mai 2008, 18:27
Muetze1's answer adressing me not you
Markus Kinzler
  Mit Zitat antworten Zitat
Razor
(Gast)

n/a Beiträge
 
#7

Re: openlibsys.org Open source driver

  Alt 5. Mai 2008, 18:31
I had to say it once it for all.I had enough..
  Mit Zitat antworten Zitat
Muetze1
(Gast)

n/a Beiträge
 
#8

Re: openlibsys.org Open source driver

  Alt 5. Mai 2008, 19:39
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...
  Mit Zitat antworten Zitat
Razor
(Gast)

n/a Beiträge
 
#9

Re: openlibsys.org Open source driver

  Alt 5. Mai 2008, 19:58
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!
  Mit Zitat antworten Zitat
Razor
(Gast)

n/a Beiträge
 
#10

Re: openlibsys.org Open source driver

  Alt 5. Mai 2008, 23:32
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.
  Mit Zitat antworten Zitat
Antwort Antwort
Seite 1 von 4  1 23     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 17:54 Uhr.
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