Exemplo n.º 1
0
 public static extern unsafe bool CreateImpl(char *cmd,
                                             int cmdLength,
                                             char *action,
                                             int actionLength,
                                             char *role,
                                             int roleLength,
                                             ProcessHandle *handle);
Exemplo n.º 2
0
 public static extern unsafe bool CreateImpl(char *args,
                                             int *argLengths,
                                             int argCount,
                                             char *role,
                                             int roleLength,
                                             int endpointCount,
                                             ProcessHandle *handle);
Exemplo n.º 3
0
 public static unsafe bool CreateImpl(
     char *cmdName,
     int cmdLength,
     char *actionName,
     int actionLength,
     char *role,
     int roleLength,
     ProcessHandle *handle)
 {
     return(Create(cmdName, cmdLength, actionName, actionLength,
                   role, roleLength, out *handle));
 }
Exemplo n.º 4
0
 public static unsafe bool CreateImpl(
     char *args,
     int *argLengths,
     int argCount,
     char *role,
     int roleLength,
     int endpointCount,
     ProcessHandle *handle)
 {
     return(Create(args, argLengths, argCount, role, roleLength,
                   endpointCount, out *handle));
 }