예제 #1
0
int
main(int argc, char **argv)
{
  printf("Display Information\n\n");

  PrintScreenSize();
  PrintDPI();

  return 0;
}
예제 #2
0
int
main(int argc, char **argv)
{
  printf("Display Information\n\n");

  PrintScreenSize();
  PrintDPI();
  PrintRotationInfo();

#ifdef _WIN32_WCE
  // Console on WinCE is closing automatically
  // We prevent this by requesting user input
  getchar();
#endif

  return 0;
}