Skip to content
Snippets Groups Projects
Commit 38ba5d31 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Declare taxisUnpack in taxis.h.

parent 1f989e6c
No related branches found
No related tags found
No related merge requests found
......@@ -11,11 +11,10 @@
#include "namespace.h"
#include "serialize.h"
#include "resource_unpack.h"
#include "taxis.h"
extern void gridUnpack ( char *, int, int *, int, void *context);
extern void zaxisUnpack ( char *, int, int *, int, void *context);
extern void taxisUnpack ( char *, int, int *, int, void *context);
extern int streamNint;
......
......@@ -1315,7 +1315,7 @@ taxisGetPackSize(void *p, void *context)
return packBufferSize;
}
void
int
taxisUnpack(char * unpackBuffer, int unpackBufferSize, int * unpackBufferPos,
int nspTarget, void *context)
{
......@@ -1369,6 +1369,7 @@ taxisUnpack(char * unpackBuffer, int unpackBufferSize, int * unpackBufferPos,
longname[len] = '\0';
taxisP->longname = longname;
}
return taxisP->self;
}
......
......@@ -33,6 +33,9 @@ double cdiEncodeTimeval(int date, int time, taxis_t *taxis);
void timeval2vtime(double timevalue, taxis_t *taxis, int *vdate, int *vtime);
double vtime2timeval(int vdate, int vtime, taxis_t *taxis);
int
taxisUnpack(char * unpackBuffer, int unpackBufferSize, int * unpackBufferPos,
int nspTarget, void *context);
#endif /* _TAXIS_H */
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment