Example #1
0
 public static void RhInstallDriver(
     String InDriverPath,
     String InDriverName)
 {
     if (Is64Bit)
     {
         Force(NativeAPI_x64.RhInstallDriver(InDriverPath, InDriverName));
     }
     else
     {
         Force(NativeAPI_x86.RhInstallDriver(InDriverPath, InDriverName));
     }
 }