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.

83 lines
2.7 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) 1992-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 IMA ADPCM"
  30. #ifdef DEBUG
  31. IDS_ACM_DRIVER_LONGNAME "Microsoft IMA ADPCM CODEC (debug)"
  32. #else
  33. IDS_ACM_DRIVER_LONGNAME "Microsoft IMA ADPCM CODEC"
  34. #endif
  35. IDS_ACM_DRIVER_COPYRIGHT "Copyright (C) 1992-1996 Microsoft Corporation"
  36. IDS_ACM_DRIVER_LICENSING ""
  37. IDS_ACM_DRIVER_FEATURES "Compresses and decompresses IMA ADPCM audio data."
  38. IDS_ACM_DRIVER_TAG_NAME, "IMA ADPCM"
  39. #ifdef IMAADPCM_USECONFIG
  40. IDS_CONFIG_NORATES "No rates"
  41. IDS_CONFIG_ALLRATES "All rates"
  42. IDS_CONFIG_MONOONLY "%u Hz mono"
  43. IDS_CONFIG_STEREOONLY "%u Hz stereo"
  44. IDS_CONFIG_MONOSTEREO "%u Hz mono / %u Hz stereo"
  45. IDS_ERROR, "Microsoft IMA ADPCM Codec Configuration Error"
  46. IDS_ERROR_NOMEM, "Not enough memory available for this task. Quit one or more applications to increase available memory, and then try again."
  47. #endif
  48. END
  49. //
  50. // Config dialog box
  51. //
  52. // Note: the 4L in the STYLE line un-bolds the text for Chicago.
  53. //
  54. #ifdef IMAADPCM_USECONFIG
  55. IDD_CONFIG DIALOG DISCARDABLE 0, 0, 253, 121
  56. STYLE DS_MODALFRAME | 4L | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | DS_CONTEXTHELP
  57. CAPTION "Microsoft IMA ADPCM CODEC Configuration"
  58. FONT 8, "MS Shell Dlg"
  59. BEGIN
  60. GROUPBOX "Maximum real-time conversion rate",IDC_STATIC,9,6,236,80
  61. LTEXT "&Compression:",IDC_STATIC_COMPRESS,21,26,50,8
  62. COMBOBOX IDC_COMBO_MAXRTENCODE,81,24,151,73, CBS_DROPDOWNLIST |
  63. WS_VSCROLL | WS_TABSTOP
  64. LTEXT "&Decompression:",IDC_STATIC_DECOMPRESS,21,44,50,8
  65. COMBOBOX IDC_COMBO_MAXRTDECODE,81,42,151,73, CBS_DROPDOWNLIST |
  66. WS_VSCROLL | WS_TABSTOP
  67. PUSHBUTTON "&Auto-Configure",IDC_BTN_AUTOCONFIG,81,60,80,14
  68. DEFPUSHBUTTON "OK",IDOK,138,96,50,14
  69. PUSHBUTTON "Cancel",IDCANCEL,195,96,50,14
  70. END
  71. #endif