Subversion Repositories filter_foundry

Rev

Rev 94 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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