Source code of Windows XP (NT5)
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.

77 lines
2.6 KiB

  1. //==========================================================================;
  2. //
  3. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  4. // KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  5. // IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  6. // PURPOSE.
  7. //
  8. // Copyright (c) 1993-1998 Microsoft Corporation
  9. //
  10. //--------------------------------------------------------------------------;
  11. //
  12. // codec.rc
  13. //
  14. // Description:
  15. // This file contains the resources for the codec.
  16. //
  17. //
  18. //==========================================================================;
  19. #include <windows.h>
  20. #include "codec.h"
  21. #include "codec.rcv"
  22. //
  23. //
  24. //
  25. //
  26. //
  27. STRINGTABLE MOVEABLE DISCARDABLE
  28. BEGIN
  29. IDS_ACM_DRIVER_SHORTNAME "Microsoft GSM 6.10"
  30. #ifdef DEBUG
  31. IDS_ACM_DRIVER_LONGNAME "Microsoft GSM 6.10 Audio CODEC (debug)"
  32. #else
  33. IDS_ACM_DRIVER_LONGNAME "Microsoft GSM 6.10 Audio CODEC"
  34. #endif
  35. IDS_ACM_DRIVER_COPYRIGHT "Copyright (C) 1993-1996 Microsoft Corporation"
  36. IDS_ACM_DRIVER_LICENSING ""
  37. IDS_ACM_DRIVER_FEATURES "Compresses and decompresses audio data conforming to the ETSI-GSM (European Telecommunications Standards Institute-Groupe Special Mobile) recommendation 6.10."
  38. IDS_ACM_DRIVER_TAG_NAME, "GSM 6.10"
  39. IDS_ERROR, "Microsoft GSM 6.10 Codec Configuration Error"
  40. IDS_ERROR_NOMEM, "Not enough memory available for this task. Quit one or more applications to increase available memory, and then try again."
  41. IDS_CONFIG_NORATES "No rates"
  42. IDS_CONFIG_ALLRATES "All rates"
  43. IDS_CONFIG_MONOONLY "%u Hz mono"
  44. END
  45. //
  46. // Config dialog box
  47. //
  48. // Note: the 4L in the STYLE line un-bolds the text for Chicago.
  49. //
  50. IDD_CONFIG DIALOG DISCARDABLE 0, 0, 253, 121
  51. STYLE DS_MODALFRAME | 4L | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | DS_CONTEXTHELP
  52. CAPTION "Microsoft GSM 6.10 CODEC Configuration"
  53. FONT 8, "MS Shell Dlg"
  54. BEGIN
  55. GROUPBOX "Maximum real-time conversion rate",IDC_STATIC,9,6,236,80
  56. LTEXT "&Compression:",IDC_STATIC_COMPRESS,21,26,50,8
  57. COMBOBOX IDC_COMBO_MAXRTENCODE,81,24,151,65, CBS_DROPDOWNLIST |
  58. WS_VSCROLL | WS_TABSTOP
  59. COMBOBOX IDC_COMBO_MAXRTDECODE,81,42,151,65, CBS_DROPDOWNLIST |
  60. WS_VSCROLL | WS_TABSTOP
  61. LTEXT "&Decompression:",IDC_STATIC_DECOMPRESS,21,44,50,8
  62. PUSHBUTTON "&Auto-Configure",IDC_BTN_AUTOCONFIG,81,60,80,14
  63. DEFPUSHBUTTON "OK",IDOK,138,96,50,14
  64. PUSHBUTTON "Cancel",IDCANCEL,195,96,50,14
  65. END