mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 16:44:49 +01:00
removed ^M from System.h git-svn-id: svn://136.177.114.72/svn_GW/phreeqcpp/trunk@3169 1feff8c3-07ed-0310-ac33-dd36852eb9cd
22 lines
387 B
C
22 lines
387 B
C
#ifndef _INC_SAXPHREEQC_H
|
|
#define _INC_SAXPHREEQC_H
|
|
|
|
#if defined(__cplusplus) | defined(_CPP)
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
void SAX_StartSystem();
|
|
int SAX_AddSolution(struct solution *solution_ptr);
|
|
void SAX_EndSystem();
|
|
int SAX_GetXMLLength();
|
|
const char *SAX_GetXMLStr();
|
|
int SAX_UnpackSolutions(void *pvBuffer, int buf_size);
|
|
|
|
|
|
#if defined(__cplusplus) | defined(_CPP)
|
|
}
|
|
#endif
|
|
|
|
#endif
|