19 lines
669 B
Markdown
19 lines
669 B
Markdown
|
# SPPRINT.BAS
|
||
|
|
||
|
This module contains printer enumeration constants used for the Windows API.
|
||
|
|
||
|
## Constants
|
||
|
|
||
|
- `PRINTER_ENUM_DEFAULT` (&H1) - Enumerates the default printer
|
||
|
- `PRINTER_ENUM_LOCAL` (&H2) - Enumerates local printers
|
||
|
- `PRINTER_ENUM_CONNECTIONS` (&H4) - Enumerates printer connections
|
||
|
- `PRINTER_ENUM_FAVORITE` (&H4) - Enumerates favorite printers
|
||
|
- `PRINTER_ENUM_NAME` (&H8) - Enumerates printer by name
|
||
|
- `PRINTER_ENUM_REMOTE` (&H10) - Enumerates remote printers
|
||
|
- `PRINTER_ENUM_SHARED` (&H20) - Enumerates shared printers
|
||
|
- `PRINTER_ENUM_NETWORK` (&H40) - Enumerates network printers
|
||
|
|
||
|
## Copyright
|
||
|
|
||
|
Copyright © 1997 by Desaware Inc. All Rights Reserved.
|