home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / gfx / misc / imagefx_sdk / sas / scanlib / inforeq.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-15  |  176 b   |  13 lines

  1. #include <scan/modall.h>
  2. #include <stdarg.h>
  3.  
  4. void InfoRequest (char *ctrl, ...)
  5. {
  6.    va_list va;
  7.  
  8.    va_start(va, ctrl);
  9.    VInfoRequest(ctrl, (ULONG *)va);
  10.    va_end(va);
  11. }
  12.  
  13.