summaryrefslogtreecommitdiffstats
path: root/source/registry/reg_printing.c
Commit message (Collapse)AuthorAgeFilesLines
* More const fixes.Jeremy Allison2003-03-051-1/+1
| | | | Jeremy.
* Progress on CR 601Gerald Carter2003-02-251-4/+3
| | | | | | | | | cache the printer_info_2 with the open printer handle. cache is invalidated on a mod_a_printer() call **on that smbd**. Yes, this means that the window for admins to step on each other from different clients just got larger, but since handles a generally short lived this is probably ok.
* reverted this patch till I sort out the craziness with UNIHDRAndrew Tridgell2003-01-171-16/+16
|
* This removes the 3rd argument from init_unistr2(). There were 240Andrew Tridgell2003-01-171-16/+16
| | | | | | | | | | | | | | calls to init_unistr2() in the code and every one of them got the 3rd argument incorrect, so I thought it best just to remove the argument. The incorrect usage was caused by callers using strlen() to determine the length of the string. The 3rd argument to init_unistr2() was supposed to be the character length, not the byte length of the string, so for non-english this could come out wrong. I also removed the bogus 'always allocate at least 256 bytes' hack. There may be some code that relies on this, but if there is then the code is broken and needs fixing.
* BIG patch...Andrew Bartlett2003-01-021-1/+1
| | | | | | | | | | | | | | | | This patch makes Samba compile cleanly with -Wwrite-strings. - That is, all string literals are marked as 'const'. These strings are always read only, this just marks them as such for passing to other functions. What is most supprising is that I didn't need to change more than a few lines of code (all in 'net', which got a small cleanup of net.h and extern variables). The rest is just adding a lot of 'const'. As far as I can tell, I have not added any new warnings - apart from making all of tdbutil.c's function const (so they warn for adding that const string to struct). Andrew Bartlett
* fix up print portion of registry. Merge from APP_HEAD.Gerald Carter2002-08-301-23/+46
|
* fix registry editor API for printing backend after I changedGerald Carter2002-08-221-35/+32
| | | | the NT_PRINTER_PARAM to a REGISTRY_VALUE
* Fix compile warnings.Tim Potter2002-08-221-4/+0
|
* Fairly large change to printing code.Gerald Carter2002-08-161-2/+4
| | | | | | | | | | | | | | | | | | | * removed support for PHANTOM_DEVMODE printer data * s/NT_PRINTER_PARAM/REGISTRY_VALUE/g - This was a good bit of work. Everything seems stable, but is not complete. * support for printer data keys other than PrinterDriverData in the store and fetch routines. Still needs to be plugged into the XxxPrinterDataEx() calls. Tested against NT4.0 & 2k. Like I said, it's not done, but doesn't crash so it shouldn't upset anyone (unless you're trying to build a Samba printer server off of HEAD). More work to come. Should settle by Monday. jerry
* hardcode printprocessor name since it is everywhere elseGerald Carter2002-07-291-1/+1
|
* done! printer_info_2, devicemode, sec_desc, & printer data all enumerateGerald Carter2002-07-241-3/+175
| | | | | | | | | and display correctly in regedit.exe. Not sure about REG_SZ values in PrinterDriverData. If we store these in UNICODE, I'll have to fix up a few things. REG_BINARY & REG_DWORD are fine.
* several changes in this checkinGerald Carter2002-07-241-2/+256
| | | | | | | | | | | | | | | | | | | * added REG_OPEN_HKCR for supporting regedit.exe * All data n a REGISTRY_VALUE is stored to a pointer now * fixed REG_INFO to correctly display data when double clicking on and entry in the registry editor * Will now enumerate installed driver_info_3 data * fixed numerous bugs related to pointer offsets, memory issues, etc.. in the registry routines * added a simple caching mechanism to fetch_reg_[keys|values]_specific() All that is left now is to enumerate PrinterData and I will have finished what I started out to do....
* * fix to display correct form information in REG_BINARY informationGerald Carter2002-07-231-17/+19
| | | | | | This should be 8 x uint32 (not 7. I'm guessing the 2nd to the last uint32 is the index number for the form? Not that big a deal I don't think.
* another intermediate checkin on the way to enumerating formsGerald Carter2002-07-201-22/+64
| | | | | | via the registry. There is a seg fault here which shouldn't bother anyone until I can get it fixed. I just need a check point in case I need to roll back to this version later on.
* enumeration of printers keys ( no data yet ) via the registryGerald Carter2002-07-201-20/+42
| | | | functions now works :-)
* * refactored registry operations some. subkey lists andGerald Carter2002-07-191-61/+138
| | | | | | | | | | | | | | | | | | registry values are now passed around in containers (REGSUBKEY_CTR & REGVAL_CTR) which each possess a TALLOC_CTX. * removed subkey_specific_fn() from REGISTRY_OPS. Is implemented in the form of a wrapper * temporarily broke the printing registry ops. * implemented inheritence for the data_p of nodes in a SORTED_TREE * All REGISTRY_KEY instances now store a valid REGISTRY_HOOK since the default REGOSTRY_OPS structure is stored in the root of the cache_tree. * Probably some other change I forgot.... T
* Formatting fixup. Fix shadow warning.Jeremy Allison2002-07-191-6/+6
| | | | Jeremy.
* virtual registry framework with initial printing hooks.Gerald Carter2002-07-181-0/+243