mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 16:44:49 +01:00
git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/branches/class@4145 1feff8c3-07ed-0310-ac33-dd36852eb9cd
26 lines
511 B
C
26 lines
511 B
C
#ifndef __MODULE_FILES__H
|
|
#define __MODULE_FILES__H
|
|
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
// COMMENT: {3/2/2010 4:07:45 PM}int module_handler(const int action, const int type, const char *err_str, const int stop, void *cookie, const char *format, va_list args);
|
|
// COMMENT: {3/2/2010 4:07:45 PM}int output_isopen(const int type);
|
|
|
|
|
|
typedef enum {
|
|
ACTION_ISOPEN = -100,
|
|
} module_action_type;
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif /* __MODULE_FILES__H */
|