Ejemplo n.º 1
0
 public void AcpiLoadDll()
 {
     this.hModule = AcpiDriver.LoadLibrary(this.AcpiDriverDllName);
     if (this.hModule == IntPtr.Zero)
     {
         this.DEBUG("LoadLibrary file " + this.AcpiDriverDllName + " failed");
         throw new Exception("Load " + this.AcpiDriverDllName + " failed");
     }
 }