Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Structures, prefix the name with the module name and a period.
PRINTER_DEFAULTS (Structures)
.
C# Definition:
[StructLayout(LayoutKind.Sequential, CharSet=CharSet.Auto)]
class PRINTER_DEFAULTS {
public string pDatatype;
public IntPtr pDevMode;
public uint DesiredAccess;
}
VB Definition:
Structure PRINTER_DEFAULTS
Public pDatatype As IntPtr
Public pDevMode As IntPtr
Public DesiredAccess As Integer
End Structure
User-Defined Field Types:
None.
Notes:
PRINTER_DEFAULTS should be defined as a class instead of a struct, so that OpenPrinter does not need pDefaults to be passed in as a ref argument, thus you can pass in null if you want to.
Opens a printer handle given the printer name
5/29/2015 10:24:16 AM - -212.159.121.211
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
alternate definitions?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.