summaryrefslogtreecommitdiff
path: root/source3/include/proto.h
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2000-05-24 07:20:27 +0000
committerAndrew Tridgell <tridge@samba.org>2000-05-24 07:20:27 +0000
commitaedd865601614fa00faacba056764d567ead1e3b (patch)
tree29b205a594587bcab885f755c0e7c1505ebb89a8 /source3/include/proto.h
parentd87a20e8c5254780b1855f92332706780cba4255 (diff)
downloadsamba-aedd865601614fa00faacba056764d567ead1e3b.tar.gz
samba-aedd865601614fa00faacba056764d567ead1e3b.tar.bz2
samba-aedd865601614fa00faacba056764d567ead1e3b.zip
new prototypes
(This used to be commit d38092d5a6ca10a4d52214a88f0b99f5922bd108)
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r--source3/include/proto.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index 9dec5f16e0..69f8e8790b 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -1405,7 +1405,6 @@ BOOL lp_msdfs_root(int );
BOOL lp_autoloaded(int );
BOOL lp_preexec_close(int );
BOOL lp_rootpreexec_close(int );
-BOOL lp_revalidate(int );
BOOL lp_casesensitive(int );
BOOL lp_preservecase(int );
BOOL lp_shortpreservecase(int );
@@ -1598,6 +1597,7 @@ BOOL parse_lpq_entry(int snum,char *line,
/*The following definitions come from printing/nt_printing.c */
+int nt_printing_init(void);
int get_ntforms(nt_forms_struct **list);
int write_ntforms(nt_forms_struct **list, int number);
BOOL add_a_form(nt_forms_struct **list, const FORM *form, int *count);
@@ -1605,7 +1605,6 @@ void update_a_form(nt_forms_struct **list, const FORM *form, int count);
int get_ntdrivers(fstring **list, char *architecture);
void get_short_archi(char *short_archi, char *long_archi);
uint32 del_a_printer(char *portname);
-void dump_a_param(NT_PRINTER_PARAM *param);
BOOL add_a_specific_param(NT_PRINTER_INFO_LEVEL_2 *info_2, NT_PRINTER_PARAM *param);
BOOL unlink_specific_param_if_exist(NT_PRINTER_INFO_LEVEL_2 *info_2, NT_PRINTER_PARAM *param);
uint32 add_a_printer(NT_PRINTER_INFO_LEVEL printer, uint32 level);
@@ -3630,6 +3629,8 @@ int tdb_store_int_byblob(TDB_CONTEXT *tdb, char *keystr, size_t len, int v);
int tdb_store_int(TDB_CONTEXT *tdb, char *keystr, int v);
int tdb_store_by_string(TDB_CONTEXT *tdb, char *keystr, void *buffer, int len);
TDB_DATA tdb_fetch_by_string(TDB_CONTEXT *tdb, char *keystr);
+size_t tdb_pack(char *buf, int bufsize, char *fmt, ...);
+int tdb_unpack(char *buf, int bufsize, char *fmt, ...);
/*The following definitions come from utils/nbio.c */