/usr/include/irapistream.h is in librapi2-dev 0.15-2.1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 33 34 35 36 37 38 39 40 41 | /* $Id: irapistream.h 3813 2009-07-21 17:56:08Z mark_ellis $ */
#ifndef __irapistream_h__
#define __irapistream_h__
#include <synce.h>
#ifdef __cplusplus
namespace synce
{
extern "C"
{
#endif
struct _IRAPIStream;
typedef struct _IRAPIStream IRAPIStream;
ULONG IRAPIStream_Release(IRAPIStream* stream);
HRESULT IRAPIStream_Read(
IRAPIStream* stream,
void *pv,
ULONG cb,
ULONG *pcbRead);
HRESULT IRAPIStream_Write(
IRAPIStream* stream,
void const *pv,
ULONG cb,
ULONG *pcbWritten);
int IRAPIStream_GetRawSocket(IRAPIStream* stream);
#ifdef __cplusplus
}
}
#endif
#endif /* __irapistream_h__ */
|