_ASSOCIATIONS IN C++_
by Dan Ford
Listing One
/******************************************************************
| Callback.h
*******************************************************************/
//----------------------------- defines ----------------------------
#define NULL 0L
#define TRUE 1
#define FALSE 0
//----------------------------- typedefs ---------------------------
typedef int BOOL; // define a Boolean type
typedef void FNCB(void * pObj, void * clientData, void * callData);
typedef ...