-
Notifications
You must be signed in to change notification settings - Fork 0
/
NSTask.h
49 lines (43 loc) · 1.37 KB
/
NSTask.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//
// Generated by class-dump 3.5 (64 bit).
//
// Copyright (C) 1997-2019 Steve Nygard.
//
#import <objc/NSObject.h>
@class NSArray, NSDictionary, NSURL;
@interface NSTask : NSObject
{
}
+ (id)launchedTaskWithExecutableURL:(id)arg1 arguments:(id)arg2 error:(out id *)arg3 terminationHandler:(id)arg4;
+ (id)launchedTaskWithLaunchPath:(id)arg1 arguments:(id)arg2;
+ (id)launchedTaskWithDictionary:(id)arg1;
+ (id)currentTaskDictionary;
+ (id)allocWithZone:(struct _NSZone *)arg1;
- (id)init;
- (_Bool)isSpawnedProcessDisclaimed;
- (void)setSpawnedProcessDisclaimed:(_Bool)arg1;
@property long long qualityOfService;
@property(retain) id standardError;
@property(retain) id standardOutput;
@property(retain) id standardInput;
- (id)currentDirectoryPath;
@property(copy) NSArray *arguments;
@property(copy) NSDictionary *environment;
- (id)launchPath;
@property(readonly) int processIdentifier;
- (long long)suspendCount;
- (_Bool)resume;
- (_Bool)suspend;
- (void)terminate;
- (void)interrupt;
@property(copy) NSURL *executableURL;
- (void)setLaunchPath:(id)arg1;
@property(copy) NSURL *currentDirectoryURL;
- (void)setCurrentDirectoryPath:(id)arg1;
- (_Bool)launchAndReturnError:(id *)arg1;
- (void)launch;
@property(readonly, getter=isRunning) _Bool running;
@property(readonly) long long terminationReason;
@property(readonly) int terminationStatus;
@property(copy) id terminationHandler;
@end