1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
/*
ltpcla.h: common definitions for LTP convergence layer
adapter modules.
Author: Chris Krupiarz, APL
Scott Burleigh, JPL
Modification History:
Date Who What
Copyright (c) 2007, California Institute of Technology.
ALL RIGHTS RESERVED. U.S. Government Sponsorship
acknowledged.
*/
#ifndef _LTPCLA_H_
#define _LTPCLA_H_
#include "bpP.h"
#include "ltp.h"
#include <pthread.h>
#ifdef __cplusplus
extern "C" {
#endif
#define BpLtpClientId (1)
#ifdef __cplusplus
}
#endif
#endif /* _LTPCLA_H */
|