Subversion Repositories filter_foundry

Rev

Rev 259 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
259 daniel-mar 1
extern FilterRecordPtr gpb;
2
 
312 daniel-mar 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
259 daniel-mar 9
 
10
#define MIN(a,b) ((a) < (b) ? (a) : (b))
11
#define MAX(a,b) ((a) > (b) ? (a) : (b))