dict-private.h revision 2be7df5df08ac4639ad83559ec5fcf552c84fb4a
#ifndef __DICT_PRIVATE_H
#define __DICT_PRIVATE_H
#include "dict.h"
struct dict_vfuncs {
const char *username);
struct dict_iterate_context *
bool recurse);
};
struct dict {
const char *name;
struct dict_vfuncs v;
};
struct dict_iterate_context {
};
struct dict_transaction_context {
unsigned int changed:1;
};
#endif