39 lines
738 B
C
39 lines
738 B
C
/* wdbTipcSockLib.h - header file for remote debug agent TIPC library */
|
|
|
|
/*
|
|
* Copyright (c) 2005 Wind River Systems, Inc.
|
|
*
|
|
* The right to copy, distribute, modify or otherwise make use of this
|
|
* software may be licensed only pursuant to the terms of an applicable Wind
|
|
* River license agreement.
|
|
*/
|
|
|
|
/*
|
|
modification history
|
|
--------------------
|
|
01a,30may05,dbt written.
|
|
*/
|
|
|
|
#ifndef __INCwdbTipcSockLibh
|
|
#define __INCwdbTipcSockLibh
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* includes */
|
|
|
|
#include "wdb/wdbCommIfLib.h"
|
|
|
|
/* function prototypes */
|
|
|
|
extern STATUS wdbTipcSockIfInit (WDB_COMM_IF * pCommIf,
|
|
UINT8 tipcPortType,
|
|
UINT8 tipcPortInstance);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __INCwdbTipcSockLibh */
|