~logan/ubuntu/trusty/pinentry/0.8.3-1ubuntu1

« back to all changes in this revision

Viewing changes to assuan/assuan.h

  • Committer: Bazaar Package Importer
  • Author(s): Peter Eisentraut
  • Date: 2005-01-27 19:10:07 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050127191007-83ptn4mcw63mu085
Tags: 0.7.2-1
* New upstream release
* Added new -gtk2 flavor.
* Build dependencies revised accordingly.
* Added more copyright holders to debian/copyright.
* Removed compatibility symlinks.
* Converted to CDBS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
  ASSUAN_Card_Not_Present = 404,
102
102
  ASSUAN_Invalid_Id = 405
103
103
 
104
 
} AssuanError;
 
104
} assuan_error_t;
 
105
 
 
106
typedef assuan_error_t AssuanError; /* Deprecated. */
105
107
 
106
108
/* This is a list of pre-registered ASSUAN commands */
107
109
typedef enum {
122
124
#define ASSUAN_LINELENGTH 1002 /* 1000 + [CR,]LF */
123
125
 
124
126
struct assuan_context_s;
125
 
typedef struct assuan_context_s *ASSUAN_CONTEXT;
 
127
typedef struct assuan_context_s *assuan_context_t; 
 
128
typedef struct assuan_context_s *ASSUAN_CONTEXT; /* Deprecated.  */
126
129
 
127
130
/*-- assuan-handler.c --*/
128
131
int assuan_register_command (ASSUAN_CONTEXT ctx,