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
linphone-windows10
Commits
1f1d27fd
Commit
1f1d27fd
authored
Nov 23, 2015
by
Ghislain MARY
Browse files
Fix build.
parent
b25964cf
Changes
4
Hide whitespace changes
Inline
Side-by-side
Native/Core.cpp
View file @
1f1d27fd
...
...
@@ -1017,10 +1017,10 @@ Linphone::Native::AuthInfo^ Linphone::Native::Core::CreateAuthInfo(Platform::Str
return
authInfo
;
}
Linphone
::
Native
::
CallParams
^
Linphone
::
Native
::
Core
::
Create
Default
CallParam
eters
(
)
Linphone
::
Native
::
CallParams
^
Linphone
::
Native
::
Core
::
CreateCallParam
s
(
Linphone
::
Native
::
Call
^
call
)
{
API_LOCK
;
return
(
Linphone
::
Native
::
CallParams
^
)
Linphone
::
Native
::
Utils
::
GetCallParams
(
linphone_core_create_
default_
call_param
eter
s
(
this
->
lc
));
return
(
Linphone
::
Native
::
CallParams
^
)
Linphone
::
Native
::
Utils
::
GetCallParams
(
linphone_core_create_call_params
(
this
->
lc
,
call
->
call
));
}
Linphone
::
Native
::
ProxyConfig
^
Linphone
::
Native
::
Core
::
CreateProxyConfig
()
...
...
Native/Core.h
View file @
1f1d27fd
...
...
@@ -784,10 +784,10 @@ namespace Linphone
AuthInfo
^
CreateAuthInfo
(
Platform
::
String
^
username
,
Platform
::
String
^
userid
,
Platform
::
String
^
password
,
Platform
::
String
^
ha1
,
Platform
::
String
^
realm
,
Platform
::
String
^
domain
);
/// <summary>
/// Gets a
default
set of CallParams.
/// Gets a set of CallParams.
/// </summary>
/// <returns>The
default
set of CallParams</returns>
CallParams
^
Create
Default
CallParam
eters
(
);
/// <returns>The set of CallParams
for the specified call
</returns>
CallParams
^
CreateCallParam
s
(
Call
^
call
);
/// <summary>
/// Creates an empty proxy config.
...
...
Native/Native.vcxproj
View file @
1f1d27fd
...
...
@@ -154,7 +154,7 @@
<PreprocessorDefinitions>
IN_LINPHONE;_WINRT_DLL;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<AdditionalUsingDirectories>
$(WindowsSDK_WindowsMetadata);$(AdditionalUsingDirectories)
</AdditionalUsingDirectories>
<AdditionalOptions>
/bigobj %(AdditionalOptions)
</AdditionalOptions>
<DisableSpecificWarnings>
28204
</DisableSpecificWarnings>
<DisableSpecificWarnings>
4996;
28204
</DisableSpecificWarnings>
<AdditionalIncludeDirectories>
$(ProjectDir)..\submodules\linphone;$(ProjectDir)..\submodules\linphone\mediastreamer2\include;$(ProjectDir)..\submodules\linphone\oRTP\include;$(ProjectDir)..\submodules\belle-sip\include;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
</ClCompile>
<Link>
...
...
@@ -168,7 +168,7 @@
<PreprocessorDefinitions>
IN_LINPHONE;_WINRT_DLL;NDEBUG;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<AdditionalUsingDirectories>
$(WindowsSDK_WindowsMetadata);$(AdditionalUsingDirectories)
</AdditionalUsingDirectories>
<AdditionalOptions>
/bigobj %(AdditionalOptions)
</AdditionalOptions>
<DisableSpecificWarnings>
28204
</DisableSpecificWarnings>
<DisableSpecificWarnings>
4996;
28204
</DisableSpecificWarnings>
<AdditionalIncludeDirectories>
$(ProjectDir)..\submodules\linphone;$(ProjectDir)..\submodules\linphone\mediastreamer2\include;$(ProjectDir)..\submodules\linphone\oRTP\include;$(ProjectDir)..\submodules\belle-sip\include;%(AdditionalIncludeDirectories)
</AdditionalIncludeDirectories>
</ClCompile>
<Link>
...
...
submodules/sqlite/sqlite.def
View file @
1f1d27fd
...
...
@@ -14,4 +14,4 @@ sqlite3_open16
sqlite3_prepare_v2
sqlite3_profile
sqlite3_snprintf
sqlite3_step
\ No newline at end of file
sqlite3_step
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