aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/android/support/v4
diff options
context:
space:
mode:
authorVincent Breitmoser <valodim@mugenguild.com>2015-01-13 23:09:48 +0100
committerVincent Breitmoser <valodim@mugenguild.com>2015-01-13 23:09:48 +0100
commit8b0e04b9dfd36a4bb8740b76aca5eac36ac35a58 (patch)
tree236fa10b70eba85e82c7a06fba4f4bf707a12da8 /OpenKeychain/src/main/java/android/support/v4
parentcb997fbda6449daf6c9ea2a9376a412f922f2a4f (diff)
downloadopen-keychain-8b0e04b9dfd36a4bb8740b76aca5eac36ac35a58.tar.gz
open-keychain-8b0e04b9dfd36a4bb8740b76aca5eac36ac35a58.tar.bz2
open-keychain-8b0e04b9dfd36a4bb8740b76aca5eac36ac35a58.zip
make user_ids table typed, with attribute_data support
Diffstat (limited to 'OpenKeychain/src/main/java/android/support/v4')
0 files changed, 0 insertions, 0 deletions
scape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/*
 * Copyright (C) 2004, 2005 Mike Wray <mike.wray@hp.com>
 *
 * This program 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; either version 2 of the License, or (at your
 * option) any later version.
 * 
 * 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, write to the Free software Foundation, Inc.,
 * 59 Temple Place, suite 330, Boston, MA 02111-1307 USA
 *
 */
#ifndef _VNET_EVAL_H_
#define _VNET_EVAL_H_

#include "sxpr.h"
struct IOStream;

typedef struct SxprEval {
    Sxpr name;
    int (*fn)(Sxpr, struct IOStream *, void *data);
} SxprEval;

extern int eval_peer_add(Sxpr exp, struct IOStream *out, void *data);
extern int eval_vnet_add(Sxpr exp, struct IOStream *out, void *data);
extern int vnet_eval_defs(SxprEval *defs, Sxpr exp, struct IOStream *out, void *data);
extern int vnet_eval(Sxpr exp, struct IOStream *out, void *data);

#endif /* ! _VNET_EVAL_H_ */