コード例 #1
0
 public static IntPtr tdGetDeviceParameter(int intDeviceId, IntPtr strName, IntPtr defaultValue)
 {
     if (isWindows)
     {
         return(WindowsWrapper.tdGetDeviceParameter(intDeviceId, strName, defaultValue));
     }
     else
     {
         return(UnixWrapper.tdGetDeviceParameter(intDeviceId, strName, defaultValue));
     }
 }