Conforming to pointer declaration style.

This commit is contained in:
Michael Tryby
2018-02-02 10:52:32 -05:00
parent 38292ad849
commit ddd08e3d5f
3 changed files with 102 additions and 102 deletions

View File

@@ -266,7 +266,7 @@ extern "C" {
/**
@brief The EPANET Project wrapper object
*/
typedef void* EN_ProjectHandle;
typedef void *EN_ProjectHandle;
// typedef struct EN_Project EN_Project;
typedef struct EN_Pattern EN_Pattern;
typedef struct EN_Curve EN_Curve;
@@ -1125,10 +1125,10 @@ extern "C" {
Threadsafe versions of all epanet functions
***************************************************/
int DLLEXPORT EN_alloc(EN_ProjectHandle* ph);
int DLLEXPORT EN_free(EN_ProjectHandle* ph);
int DLLEXPORT EN_alloc(EN_ProjectHandle *ph);
int DLLEXPORT EN_free(EN_ProjectHandle *ph);
int DLLEXPORT EN_init(EN_ProjectHandle* ph, char *rptFile, char *binOutFile,
int DLLEXPORT EN_init(EN_ProjectHandle *ph, char *rptFile, char *binOutFile,
EN_FlowUnits UnitsType, EN_FormType HeadlossFormula);
int DLLEXPORT EN_open(EN_ProjectHandle ph, const char *inpFile,