Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.9 KiB

  1. //
  2. // Copyright (c) 1999 Microsoft Corporation
  3. //
  4. // phonemgr.rc - Resource script for USB Phone Outgoing Call Sample
  5. //
  6. /////////////////////////////////////////////////////////////////////
  7. //
  8. // Mark the EXE with the OS build version.
  9. //
  10. #include <windows.h>
  11. #include <ntverp.h>
  12. #define VER_FILETYPE VFT_APP
  13. #define VER_FILESUBTYPE VFT2_UNKNOWN
  14. #define VER_FILEDESCRIPTION_STR "Microsoft USB Phone Outgoing Call Sample"
  15. #define VER_INTERNALNAME_STR "phonemgr.exe"
  16. #define VER_ORIGINALFILENAME_STR "phonemgr.exe"
  17. #include "common.ver"
  18. /////////////////////////////////////////////////////////////////////////////
  19. //
  20. // Dialog
  21. //
  22. #include "resource.h"
  23. IDD_MAINDLG DIALOG DISCARDABLE 0, 0, 240, 138
  24. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  25. CAPTION "USB Phone Manager"
  26. FONT 8, "Microsoft Sans Serif"
  27. BEGIN
  28. EDITTEXT IDC_STATUS,12,115,216,12,ES_AUTOHSCROLL | ES_READONLY |
  29. NOT WS_TABSTOP
  30. LTEXT "Status:",IDC_STATIC1,12,105,101,8
  31. LTEXT "Ready to place a call",IDC_STATIC3,39,18,71,11
  32. LTEXT "Use the dial buttons on your telephone to make a call. Or, if you wish, use the keyboard to type a phone number or email address in the text box below, and then click Dial Now to place the call.",
  33. IDC_STATIC2,12,48,218,33
  34. ICON IDI_ICON1,IDC_STATIC4,13,10,21,20
  35. DEFPUSHBUTTON "Dial Now",IDC_MAKECALL,177,83,50,14
  36. CONTROL "",IDC_DESTADDRESS,"EDIT",ES_AUTOHSCROLL | WS_BORDER |
  37. WS_TABSTOP,11,84,162,13
  38. END
  39. /////////////////////////////////////////////////////////////////////////////
  40. //
  41. // Icon
  42. //
  43. // Icon with lowest ID value placed first to ensure application icon
  44. // remains consistent on all systems.
  45. IDI_ICON1 ICON DISCARDABLE "icon1.ico"
  46. //
  47. // eof
  48. //