mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-15 16:18:22 +01:00
git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@4276 1feff8c3-07ed-0310-ac33-dd36852eb9cd
20 lines
343 B
C
20 lines
343 B
C
#ifndef _INC_IPHREEQC_CALLBACKS_H
|
|
#define _INC_IPHREEQC_CALLBACKS_H
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
typedef int (*PFN_PRERUN_CALLBACK)(void *cookie);
|
|
typedef int (*PFN_POSTRUN_CALLBACK)(void *cookie);
|
|
typedef int (*PFN_CATCH_CALLBACK)(void *cookie);
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif /* _INC_IPHREEQC_CALLBACKS_H */
|