Subversion Repositories filter_foundry

Rev

Rev 94 | Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. extern FilterRecordPtr gpb;
  2.  
  3. #define PINEWHANDLE             gpb->handleProcs->newProc
  4. #define PIDISPOSEHANDLE gpb->handleProcs->disposeProc
  5. #define PIGETHANDLESIZE gpb->handleProcs->getSizeProc
  6. #define PISETHANDLESIZE gpb->handleProcs->setSizeProc
  7. #define PILOCKHANDLE    gpb->handleProcs->lockProc
  8. #define PIUNLOCKHANDLE  gpb->handleProcs->unlockProc
  9.  
  10. #define MIN(a,b) ((a) < (b) ? (a) : (b))
  11. #define MAX(a,b) ((a) > (b) ? (a) : (b))
  12.