Skip to content

Commit

Permalink
feat(win32-def): def EnumPrinters_Level
Browse files Browse the repository at this point in the history
  • Loading branch information
waitingsong committed Jul 22, 2022
1 parent fe67c66 commit 91f4f00
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/win32-def/src/lib/common.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,11 @@ export interface StringBuffer extends ref.Type<string> {


/**
* @dos https://docs.microsoft.com/en-us/windows/win32/printdocs/getprinter#parameters
* @docs https://docs.microsoft.com/en-us/windows/win32/printdocs/getprinter#parameters
*/
export type PRINTER_INFO_LEVEL = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9
/**
* @docs https://docs.microsoft.com/zh-cn/windows/win32/printdocs/enumprinters
*/
export type EnumPrinters_Level = 1 | 2 | 4 | 5

0 comments on commit 91f4f00

Please sign in to comment.