home *** CD-ROM | disk | FTP | other *** search
/ M.u.C.S. Disc 2000 / MUCS2000.iso / sound / mp2 / src / gem / dsp_bin.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-30  |  234 b   |  11 lines

  1. #include "dsp_bine.h" /* binary for external clock */
  2. #include "dsp_bini.h" /* binary for internal clock */
  3.  
  4. long get_bin_len(int ext)
  5. {
  6.     if(ext)
  7.         return (long)sizeof(dsp_binext);
  8.     else
  9.         return (long)sizeof(dsp_binint);
  10. }
  11.