PSI sics-cvs-psi-2008-10-02

This commit is contained in:
2008-10-02 00:00:00 +00:00
committed by Douglas Clowes
parent 6e926b813f
commit 4baffb9b7a
304 changed files with 77527 additions and 3612 deletions

View File

@@ -12,6 +12,8 @@
#define MAGIC 7776622
#include "napiconfig.h"
typedef struct {
int magic;
int rank;
@@ -25,6 +27,7 @@ typedef struct {
int *iPtr;
short int *sPtr;
char *cPtr;
int64_t *lPtr;
} u;
}*pNXDS, NXDS;
@@ -41,6 +44,8 @@ typedef struct {
#define NX_UINT16 23
#define NX_INT32 24
#define NX_UINT32 25
#define NX_INT64 26
#define NX_UINT64 27
#define NX_CHAR 4
#define NX_MAXRANK 32
@@ -66,4 +71,7 @@ char *getNXDatasetText(pNXDS dataset);
int putNXDatasetValue(pNXDS dataset, int pos[], double value);
int putNXDatasetValueAt(pNXDS dataset, int address, double value);
pNXDS cutNXDataset(pNXDS source, int start[], int end[]);
pNXDS sumNXDataset(pNXDS source, int dimNo, int start, int end);
#endif