diff options
author | Gerald Carter <jerry@samba.org> | 2003-02-15 23:36:18 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-02-15 23:36:18 +0000 |
commit | 043b9dff22e909fc290c34d879cad8b4c980fc13 (patch) | |
tree | 55cfc6e7ef8958ca81408890b541439995a4d648 /source/include | |
parent | 643172ac1a9b53823d704690eb03120074bbef78 (diff) | |
download | samba-043b9dff22e909fc290c34d879cad8b4c980fc13.tar.gz samba-043b9dff22e909fc290c34d879cad8b4c980fc13.tar.xz samba-043b9dff22e909fc290c34d879cad8b4c980fc13.zip |
* set PRINTER_ATTRIBUTE_RAW_ONLY; CR 1736
* never save a pointer to an automatic variable (they go away)
implement a deep copy for SPOOLSS_NOTIFY_MSG to correct
messages being sent that have junk for strings;
fix in response to changes for CR 1504
Diffstat (limited to 'source/include')
-rwxr-xr-x | source/include/rpc_spoolss.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/include/rpc_spoolss.h b/source/include/rpc_spoolss.h index 249053403d1..c2e3d92787c 100755 --- a/source/include/rpc_spoolss.h +++ b/source/include/rpc_spoolss.h @@ -373,6 +373,10 @@ PRINTER_MESSAGE_INFO; #define PRINTER_ATTRIBUTE_RAW_ONLY 0x00001000 #define PRINTER_ATTRIBUTE_PUBLISHED 0x00002000 +#define PRINTER_ATTRIBUTE_SAMBA (PRINTER_ATTRIBUTE_RAW_ONLY|\ + PRINTER_ATTRIBUTE_SHARED|\ + PRINTER_ATTRIBUTE_NETWORK) + #define NO_PRIORITY 0 #define MAX_PRIORITY 99 #define MIN_PRIORITY 1 |