home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / audio / wavefile / wavefile.rc < prev    next >
Text File  |  1997-10-05  |  869b  |  38 lines

  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 - 1997 Microsoft Corporation.  All Rights Reserved.
  9.  *
  10.  **************************************************************************/
  11.  
  12.  
  13.  
  14. #define IDS_STREAMNAME        100
  15. #define IDS_FILETYPE        101
  16.  
  17. #ifdef RC_INVOKED
  18.  
  19. /*    -    -    -    -    -    -    -    -    */
  20.  
  21. #include <windows.h>
  22. #include "wavefile.rcv"
  23.  
  24. /*    -    -    -    -    -    -    -    -    */
  25.  
  26. //
  27. // Strings for the stream name in AVISTREAMINFO and file type in AVIFILEINFO
  28. //
  29.  
  30. STRINGTABLE
  31. BEGIN
  32.     IDS_STREAMNAME        "Microsoft Waveform: %s"
  33.     IDS_FILETYPE        "Microsoft Waveform"
  34. END
  35.  
  36.  
  37. #endif
  38.