awips2/nativeLib/rary.ohd.whfs/inc/general/loc_shift.h
root 06a8b51d6d Initial revision of AWIPS2 11.9.0-7p5
Former-commit-id: 64fa9254b946eae7e61bbc3f513b7c3696c4f54f
2012-01-06 08:55:05 -06:00

31 lines
517 B
C

#ifndef LOC_SHIFT_H
#define LOC_SHIFT_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "DbmsDefs.h"
#include "GeneralUtil.h"
#include "CodeTimer.h"
#define PARAM_CODE_LEN 6
#define INITIAL_SHIFTS 10000
#define LINE_LENGTH 50
typedef struct PdcLocationShift
{
char lid[LOC_ID_LEN];
char param_code[PARAM_CODE_LEN + 1];
int x_shift;
int y_shift;
} PdcLocationShift;
PdcLocationShift * readShiftFile(char * filePath, int *arraySizeParam);
#endif