Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
8f86c4a3
Commit
8f86c4a3
authored
Jul 24, 2017
by
jehan
Browse files
fix c++ link issue
parent
43c69dc4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
coreapi/lpc2xml.h
coreapi/lpc2xml.h
+6
-1
coreapi/xml2lpc.h
coreapi/xml2lpc.h
+7
-1
No files found.
coreapi/lpc2xml.h
View file @
8f86c4a3
...
...
@@ -22,6 +22,9 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#include "linphone/core.h"
#ifdef __cplusplus
extern
"C"
{
#endif
typedef
struct
_lpc2xml_context
lpc2xml_context
;
typedef
enum
_lpc2xml_log_level
{
...
...
@@ -41,6 +44,8 @@ LINPHONE_PUBLIC int lpc2xml_set_lpc(lpc2xml_context* context, const LpConfig *lp
LINPHONE_PUBLIC
int
lpc2xml_convert_file
(
lpc2xml_context
*
context
,
const
char
*
filename
);
LINPHONE_PUBLIC
int
lpc2xml_convert_fd
(
lpc2xml_context
*
context
,
int
fd
);
LINPHONE_PUBLIC
int
lpc2xml_convert_string
(
lpc2xml_context
*
context
,
char
**
content
);
#ifdef __cplusplus
}
#endif
#endif //LPC2XML_H_
coreapi/xml2lpc.h
View file @
8f86c4a3
...
...
@@ -22,6 +22,10 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#include "linphone/core.h"
#ifdef __cplusplus
extern
"C"
{
#endif
typedef
struct
_xml2lpc_context
xml2lpc_context
;
typedef
enum
_xml2lpc_log_level
{
...
...
@@ -47,6 +51,8 @@ LINPHONE_PUBLIC int xml2lpc_set_xsd_string(xml2lpc_context* context, const char
LINPHONE_PUBLIC
int
xml2lpc_validate
(
xml2lpc_context
*
context
);
LINPHONE_PUBLIC
int
xml2lpc_convert
(
xml2lpc_context
*
context
,
LpConfig
*
lpc
);
#ifdef __cplusplus
}
#endif
#endif //XML2LPC_H_
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment