forked from AgoraDesktop/apps-terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServices.h
42 lines (30 loc) · 893 Bytes
/
Services.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
/*
copyright 2002 Alexander Malmberg <[email protected]>
This file is a part of Terminal.app. Terminal.app is free software; you
can redistribute it and/or modify it under the terms of the GNU General
Public License as published by the Free Software Foundation; version 2
of the License. See COPYING or main.m for more information.
*/
#ifndef Services_h
#define Services_h
#define Key @"Key"
#define ReturnData @"ReturnData"
#define Commandline @"Commandline"
#define Input @"Input"
#define Type @"Type"
#define AcceptTypes @"AcceptTypes"
#define INPUT_NO 0
#define INPUT_STDIN 1
#define INPUT_CMDLINE 2
#define ACCEPT_STRING 1
#define ACCEPT_FILENAMES 2
#define TYPE_BACKGROUND 0
#define TYPE_WINDOW_NEW 1
#define TYPE_WINDOW_IDLE 2
@interface TerminalServices : NSObject
{
}
+(void) updateServicesPlist;
+(NSDictionary *) terminalServicesDictionary;
@end
#endif