Former-commit-id:133dc97f67
[formerlya02aeb236c
] [formerly9f19e3f712
] [formerly06a8b51d6d
[formerly9f19e3f712
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]] Former-commit-id:06a8b51d6d
Former-commit-id:377dcd10b9
[formerly3360eb6c5f
] Former-commit-id:8e80217e59
31 lines
517 B
C
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
|
|
|
|
|