Subversion Repositories filter_foundry

Rev

Rev 439 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
330 daniel-mar 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))