mirror of
https://github.com/vale981/VoiDPlugins
synced 2025-03-05 17:21:38 -05:00
33 lines
No EOL
726 B
C#
33 lines
No EOL
726 B
C#
using System.Collections.Generic;
|
|
|
|
namespace VoiDPlugins.Tool
|
|
{
|
|
internal static class OemData
|
|
{
|
|
public static readonly List<string> OemProcesses = new List<string>
|
|
{
|
|
// XP-Pen
|
|
"PentabletService",
|
|
"PenTablet",
|
|
|
|
// Wacom
|
|
"WacomDesktopCenter",
|
|
"Wacom_Tablet",
|
|
"Pen_Tablet",
|
|
|
|
// Gaomon
|
|
"Gaomon Tablet",
|
|
"TabletDriverCore",
|
|
|
|
// VEIKK
|
|
"TabletDriverCenter",
|
|
"TabletDriverSetting"
|
|
};
|
|
|
|
public static readonly List<string> OemDrivers = new List<string>
|
|
{
|
|
// Gaomon, Huion
|
|
"Graphics Tablet"
|
|
};
|
|
}
|
|
} |