home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / sound / nh10src / sndinfo.txt < prev    next >
Encoding:
Text File  |  1991-12-15  |  717 b   |  24 lines

  1. typedef
  2. {
  3.         WORD wSampleSize
  4.         WORD wFrequency
  5.         WORD wVolume
  6.     WORD wShift
  7.         char junk[24];
  8. } SND32_HDR;
  9.  
  10. typedef
  11. {
  12.      char szMagic[6] = { "SOUND", 0x1a };
  13.      GLOBALHANDLE hGSound;   /* not used */
  14.      DWORD dwBytes;          /* length of complete sample */
  15.      DWORD dwStart;          /* first byte to play from sample */
  16.      DWORD dwStop;           /* first byte NOT to play from
  17.      WORD wFreq;             /* frequency in Hz */
  18.      WORD wSampleSize;       /* see DSOUND.DLL from Aaron
  19.      WORD wVolume;           /* 0...100 */
  20.      WORD wShift;            /* see DSOUND.DLL from Aaron
  21.      char szName[96];        /* name of sound, ANSIZ */
  22. } SND126_HDR;
  23.  
  24.