- Adapted indenation to new agreed upon system

- Added support for second generation scriptcontext based counter
This commit is contained in:
koennecke
2009-02-13 09:00:03 +00:00
parent a3dcad2bfa
commit 91d4af0541
405 changed files with 88101 additions and 88173 deletions

View File

@ -16,7 +16,7 @@
/*------------- opening and closing section ---------------------*/
void *nx_open(char *filename, int accessMethod);
void *nx_flush(void *handle);
void nx_close(void *handle);
void nx_close(void *handle);
/*--------------- group handling section ------------------------*/
int nx_makegroup(void *handle, char *name, char *nxclass);
int nx_opengroup(void *handle, char *name, char *nxclass);
@ -29,8 +29,8 @@ int nx_initgroupdir(void *handle);
/*---------------- dataset handling -----------------------------*/
int nx_makedata(void *ptr, char *name, int rank, int type, void *dimPtr);
int nx_compmakedata(void *ptr, char *name, int rank, int type,
void *dimPtr, void *bufPtr);
int nx_compmakedata(void *ptr, char *name, int rank, int type,
void *dimPtr, void *bufPtr);
int nx_opendata(void *handle, char *name);
int nx_closedata(void *handle);
@ -39,18 +39,18 @@ int nx_putslab(void *handle, void *dataset, void *startDim);
void *nx_getslab(void *handle, void *startdim, void *size);
void *nx_getds(void *handle, char *name);
int nx_putds(void *handle, char *name, void *dataset);
int nx_putds(void *handle, char *name, void *dataset);
void *nx_getdata(void *handle);
int nx_putdata(void *handle,void *dataset);
int nx_putdata(void *handle, void *dataset);
void *nx_getinfo(void *handle);
void *nx_getdataID(void *handle);
/*-------------------- attributes --------------------------------*/
char *nx_getnextattr(void *handle, char separator);
int nx_putattr(void *handle, char *name, void *ds);
void *nx_getattr(void *handle, char *name, int type, int length);
int nx_putattr(void *handle, char *name, void *ds);
void *nx_getattr(void *handle, char *name, int type, int length);
/*---------------------- link -----------------------------------*/
@ -60,9 +60,3 @@ int nx_opensourcegroup(void *handle);
char *nx_getlasterror(void);
#endif