home *** CD-ROM | disk | FTP | other *** search
/ Executor 2.0 / executorv2.0.iso / pc / dos / extra / source / browser / browser.hqx / Browser / PhysGestalt.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-28  |  306 b   |  15 lines

  1. #include <GestaltEqu.h>
  2. #include "PhysGestalt.h"
  3.  
  4. int
  5. PhysicalGestalt (long selector, long *responsep)
  6. {
  7.   int retval;
  8.   pascal int (*physfp) (long sel, long *responsep);
  9.   
  10.   retval = Gestalt ('MUL8', (void *) &physfp);
  11.   if (retval == noErr)
  12.     retval = physfp (selector, responsep);
  13.   return retval;
  14. }
  15.