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

Added some constants for the flags field in the FORM_1 structure.

The level2 field in SPOOL_Q_ADDFORM is probably part of the FORM structure
as a discriminated union.
(This used to be commit 2c906ff77d)
This commit is contained in:
Tim Potter 2002-01-31 11:30:36 +00:00
parent a31cd9c13a
commit 10d47e3068

View File

@ -1253,6 +1253,10 @@ typedef struct spool_r_enumprinterdrivers
}
SPOOL_R_ENUMPRINTERDRIVERS;
#define FORM_USER 0
#define FORM_BUILTIN 1
#define FORM_PRINTER 2
typedef struct spool_form_1
{
uint32 flag;
@ -1759,7 +1763,7 @@ typedef struct spool_q_addform
{
POLICY_HND handle;
uint32 level;
uint32 level2;
uint32 level2; /* This should really be part of the FORM structure */
FORM form;
}
SPOOL_Q_ADDFORM;