コード例 #1
0
 public static void RtlInstallService(
     String InServiceName,
     String InExePath,
     String InChannelName)
 {
     if (Is64Bit)
     {
         Force(NativeAPI_x64.RtlInstallService(InServiceName, InExePath, InChannelName));
     }
     else
     {
         Force(NativeAPI_x86.RtlInstallService(InServiceName, InExePath, InChannelName));
     }
 }