home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_01 / WINRE139.LZH / WINREC / ENGLISH / MEMORY.TXT < prev    next >
Text File  |  1994-04-28  |  958b  |  31 lines

  1. If you use MultiTOS, you find after the start of WinRec following 'files'
  2. in the 'U:\SHM' folder:
  3.  
  4. * WINREC.MEM: block containing several read-only variables, see below
  5. * BUFFER.MEM: sound buffer for playback and record
  6. * LEVEL.MEM:  sound buffer for oszi and spectralizer in audio-thru-mode
  7.  
  8.  
  9. The block 'WINREC' contains following variables in 'C' notation:
  10.  
  11.  
  12. typedef struct
  13. {
  14.     char samplename[32];  /*Aktual sample*/
  15.     char effname[32];     /*Aktual effect*/
  16.     int mode;             /*0:Audio-Thru, 1:Record, 2:Playback,
  17.                             3:Overdubbing, -1: WinRec was terminated*/
  18.     DMAPOS *dmapos;       /*Aktual sound DMA position*/
  19.     int version;          /*WinRec version 0x1371 = V1.371*/
  20.     int pro;              /*1:WinRec Pro, 0: Shareware*/
  21. } VAR;
  22.  
  23. typedef struct
  24. {
  25.     long playbufptr;
  26.     long recbufptr;
  27.     long res1,res2;
  28. } DMAPOS;
  29.  
  30. This block could be extended in the next version! Please take notice of
  31. the 'version' field.