回答編集履歴
2
API が間違っていたのを修正
test
CHANGED
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
Win32 API の GetDriver
|
5
|
+
Win32 API の [GetPrinterDriver](https://docs.microsoft.com/en-us/windows/win32/printdocs/getprinterdriver) で [DRIVER_INFO_8](https://docs.microsoft.com/en-us/windows/win32/printdocs/driver-info-8)
|
6
6
|
|
7
|
-
|
7
|
+
を指定して取得すると dwPrinterDriverAttributes メンバに PRINTER_DRIVER_CATEGORY_VIRTUAL が格納されるのでこれで判別します。
|
8
8
|
|
9
9
|
|
10
10
|
|
1
URLをリンクに変更
test
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
Win32 API の GetDriverInfo で DRIVER_INFO_8 を指定して取得すると dwPrinterDriverAttributes メンバに PRINTER_DRIVER_CATEGORY_VIRTUAL が格納されるのでこれで判別します。
|
6
6
|
|
7
|
-
https://docs.microsoft.com/en-us/windows/win32/printdocs/driver-info-8
|
7
|
+
[https://docs.microsoft.com/en-us/windows/win32/printdocs/driver-info-8](https://docs.microsoft.com/en-us/windows/win32/printdocs/driver-info-8)
|
8
8
|
|
9
9
|
|
10
10
|
|