1998-01-30 16:23:16 +00:00
|
|
|
/* status.h
|
1998-02-24 18:50:46 +00:00
|
|
|
* Copyright (C) 1998 Free Software Foundation, Inc.
|
1998-01-30 16:23:16 +00:00
|
|
|
*
|
1998-12-23 12:41:40 +00:00
|
|
|
* This file is part of GnuPG.
|
1998-01-30 16:23:16 +00:00
|
|
|
*
|
1998-12-23 12:41:40 +00:00
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
1998-01-30 16:23:16 +00:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
1998-12-23 12:41:40 +00:00
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
1998-01-30 16:23:16 +00:00
|
|
|
* 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, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
|
|
#ifndef G10_STATUS_H
|
|
|
|
#define G10_STATUS_H
|
|
|
|
|
|
|
|
|
|
|
|
#define STATUS_ENTER 1
|
|
|
|
#define STATUS_LEAVE 2
|
|
|
|
#define STATUS_ABORT 3
|
|
|
|
|
|
|
|
#define STATUS_GOODSIG 4
|
|
|
|
#define STATUS_BADSIG 5
|
|
|
|
#define STATUS_ERRSIG 6
|
|
|
|
|
|
|
|
|
1998-02-04 18:54:31 +00:00
|
|
|
#define STATUS_BADARMOR 7
|
1998-01-30 16:23:16 +00:00
|
|
|
|
1998-05-29 11:53:54 +00:00
|
|
|
#define STATUS_RSA_OR_IDEA 8
|
1998-06-25 10:19:08 +00:00
|
|
|
#define STATUS_SIGEXPIRED 9
|
1998-07-09 13:37:17 +00:00
|
|
|
#define STATUS_KEYREVOKED 10
|
|
|
|
|
|
|
|
#define STATUS_TRUST_UNDEFINED 11
|
|
|
|
#define STATUS_TRUST_NEVER 12
|
|
|
|
#define STATUS_TRUST_MARGINAL 13
|
|
|
|
#define STATUS_TRUST_FULLY 14
|
|
|
|
#define STATUS_TRUST_ULTIMATE 15
|
|
|
|
|
1998-07-31 16:45:58 +00:00
|
|
|
#define STATUS_SHM_INFO 16
|
|
|
|
#define STATUS_SHM_GET 17
|
|
|
|
#define STATUS_SHM_GET_BOOL 18
|
|
|
|
#define STATUS_SHM_GET_HIDDEN 19
|
1998-07-09 13:37:17 +00:00
|
|
|
|
1998-08-08 19:27:00 +00:00
|
|
|
#define STATUS_NEED_PASSPHRASE 20
|
1999-01-09 15:06:59 +00:00
|
|
|
#define STATUS_VALIDSIG 21
|
1998-01-30 16:23:16 +00:00
|
|
|
|
|
|
|
/*-- status.c --*/
|
1998-07-31 16:45:58 +00:00
|
|
|
void set_status_fd ( int fd );
|
1999-01-09 15:06:59 +00:00
|
|
|
int is_status_enabled ( void );
|
1998-07-31 16:45:58 +00:00
|
|
|
void write_status ( int no );
|
|
|
|
void write_status_text ( int no, const char *text );
|
|
|
|
|
|
|
|
#ifdef USE_SHM_COPROCESSING
|
|
|
|
void init_shm_coprocessing ( ulong requested_shm_size, int lock_mem );
|
|
|
|
#endif /*USE_SHM_COPROCESSING*/
|
|
|
|
|
|
|
|
int cpr_enabled(void);
|
|
|
|
char *cpr_get( const char *keyword, const char *prompt );
|
1998-11-10 12:59:59 +00:00
|
|
|
char *cpr_get_utf8( const char *keyword, const char *prompt );
|
1998-07-31 16:45:58 +00:00
|
|
|
char *cpr_get_hidden( const char *keyword, const char *prompt );
|
|
|
|
void cpr_kill_prompt(void);
|
|
|
|
int cpr_get_answer_is_yes( const char *keyword, const char *prompt );
|
1998-01-30 16:23:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif /*G10_STATUS_H*/
|