home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gfx / imagefx_sdk-2.0.lha / ImageFX_SDK / sas / scanlib / pickfromlist.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-15  |  244 b   |  16 lines

  1. #include <scan/modall.h>
  2. #include <stdarg.h>
  3.  
  4. int PickFromList (char **text, int title, int count, ...)
  5. {
  6.    va_list va;
  7.    int i;
  8.  
  9.    va_start(va, count);
  10.    i = VPickFromList(text, title, count, (ULONG *)va);
  11.    va_end(va);
  12.  
  13.    return(i);
  14. }
  15.  
  16.