1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

s3:printing: make struct print_file_data private to printspoolss.c

metze
This commit is contained in:
Stefan Metzmacher 2012-06-04 18:15:25 +02:00
parent e91c223531
commit 6d2d8f5444
2 changed files with 9 additions and 9 deletions

View File

@ -189,15 +189,6 @@ struct notify_change_buf {
struct notify_change_request *requests;
};
struct print_file_data {
char *svcname;
char *docname;
char *filename;
struct policy_handle handle;
uint32_t jobid;
uint16 rap_jobid;
};
typedef struct files_struct {
struct files_struct *next, *prev;
int fnum;

View File

@ -25,6 +25,15 @@
#include "smbd/globals.h"
#include "../libcli/security/security.h"
struct print_file_data {
char *svcname;
char *docname;
char *filename;
struct policy_handle handle;
uint32_t jobid;
uint16 rap_jobid;
};
void print_spool_terminate(struct connection_struct *conn,
struct print_file_data *print_file);