Message-Id: <3.0.32.19970623001934.00709674@mail.geocities.com> Date: Mon, 23 Jun 1997 01:49:31 -0300 To: djgpp AT delorie DOT com From: Guilherme Silveira Subject: RE: Callbacks Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Precedence: bulk Let me see if I undestood Define this function >> typedef int ( *SILVEIRAS_FN )( char array[], int number ); Normal: >// prototype the functions >int someFunction( char stuff[], int something ); >int otherFunction( char things[], int elephant ); Main >void main() >{ What does it do? > SILVEIRAS_FN pfnCallback; > > .... > > pfnCallback = someFunction; > > pfnCallback(); >} 'Til here ?? Ok > >// define the functions that you prototyped earlier > > > >Rob Humphris > >> Thanks Guilherme