Prevent name mangling on C++

This commit is contained in:
Cameron Gutman 2014-01-20 21:38:29 -05:00
parent 267a3eecd9
commit 462b1d1e9b

View File

@ -1,5 +1,9 @@
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#define IP_ADDRESS unsigned int
typedef struct _STREAM_CONFIGURATION {
@ -34,4 +38,8 @@ typedef struct _DECODER_RENDERER_CALLBACKS {
} DECODER_RENDERER_CALLBACKS, *PDECODER_RENDERER_CALLBACKS;
int LiStartConnection(IP_ADDRESS host, PSTREAM_CONFIGURATION streamConfig, PDECODER_RENDERER_CALLBACKS drCallbacks);
void LiStopConnection(void);
void LiStopConnection(void);
#ifdef __cplusplus
}
#endif