home *** CD-ROM | disk | FTP | other *** search
/ The AGA Experience 2 / agavol2.iso / software / utilities / programmers / misc / imagefx_sdk / sas / scanlib / inforeq.c < prev    next >
Encoding:
C/C++ Source or Header  |  1978-06-29  |  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.