home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_11 / watson / vds.h < prev   
Text File  |  1993-09-03  |  495b  |  23 lines

  1. /*
  2. listing 2
  3. vds.h - Header file for VDS function subset
  4. Written by Robert Watson
  5. (C) Copyright Robert Watson 1993
  6. */
  7.  
  8. typedef struct {
  9.    long Size;
  10.    long Offset;
  11.    int  Segment;
  12.    int  BufferID;
  13.    long Address;
  14. } VDS_DDS;
  15.  
  16. int IsVDSAvailable (void);
  17. int RequestVDSBuffer (VDS_DDS * DDS);
  18. int ReleaseVDSBuffer (VDS_DDS * DDS);
  19. int DisableVDSTranslation (int Channel);
  20. int EnableVDSTranslation (int Channel);
  21. int CopyFromDMABuffer (VDS_DDS * DDS,
  22.                        long BufferOffset);
  23.