File: invocation.ads

package info (click to toggle)
topal 80-1
  • links: PTS
  • area: main
  • in suites: bullseye, buster
  • size: 1,084 kB
  • sloc: ada: 11,196; ansic: 783; sh: 174; makefile: 113
file content (49 lines) | stat: -rw-r--r-- 1,729 bytes parent folder | download
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
49
-- Topal: GPG/GnuPG and Alpine/Pine integration
-- Copyright (C) 2001--2018  Phillip J. Brooke
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License version 3 as
-- published by the Free Software Foundation.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program.  If not, see <http://www.gnu.org/licenses/>.

with Globals;               use Globals;

package Invocation is

   type Run_Modes is (Help_Text,
                      Inline_Display, Mime_Display, Old_Mime_Display,
                      Pipe_Display,
                      Inline_Send, Mime_Send, Actual_Send, Nonpine_Send,
                      Clear_Temp, Clear_Cache, Clear_All,
                      Dump_Default_Config, Dump_Current_Config,
                      Interactive_Config,
                      Fix_Email, Fix_Folders,
		      Check_Send_Token,
                      Server, Remote_Send, Remote_Mime_Send,
                      Remote_Decrypt, Remote_Mime_Decrypt,
		      Raw_Input
                      );

   Run_Mode : Run_Modes := Help_Text;

   Tmpfile       : UBS;
   Resultfile    : UBS;
   RVfile        : UBS;
   Infile        : UBS;
   Content_Type  : UBS;
   Mimefile      : UBS;
   Recipients    : UBS_Array_Pointer;
   Folders       : UBS_Array_Pointer;
   CST_Token     : UBS;
   Remaining     : UBS_Array_Pointer;

   procedure Parse_Command_Line;

end Invocation;