Example #1
0
 public static bool IsEmulator()
 {
     return(PInvoke.GetOemInfo() == MicrosoftEmulatorOemValue);
 }
Example #2
0
 public static bool IsPocketPC()
 {
     return(PInvoke.GetPlatformType() == "PocketPC");
 }
Example #3
0
 public static string PlatformType()
 {
     return(PInvoke.GetPlatformType());
 }
Example #4
0
 public static bool IsSmartphone()
 {
     return(PInvoke.GetPlatformType() == "SmartPhone");
 }