Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Openal update2 cpp17 #1840

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion project/Build.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<xml>

<set name="PLATFORM" value="android-21" if="android" />
<set name="HXCPP_CPP11" value="1" />
<set name="HXCPP_CPP17" value="1" />

<include name="${HXCPP}/build-tool/BuildCommon.xml" />

Expand Down Expand Up @@ -425,6 +425,7 @@
<lib name="shell32.lib" />
<lib name="comdlg32.lib" />
<lib name="setupapi.lib" />
<lib name="avrt.lib" if ="LIME_OPENALSOFT"/>

<lib name="usp10.lib" if="LIME_HARFBUZZ" />
<lib name="rpcrt4.lib" if="LIME_HARFBUZZ" />
Expand Down
2 changes: 1 addition & 1 deletion project/BuildHashlink.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<xml>
<set name="PLATFORM" value="android-21" if="android" />
<set name="HXCPP_CPP11" value="1" />
<set name="HXCPP_CPP17" value="1" />

<include name="${HXCPP}/build-tool/BuildCommon.xml" />

Expand Down
1 change: 1 addition & 0 deletions project/include/system/ValuePointer.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ namespace lime {
void* Call (void* arg0, void* arg1, void* arg2);
void* Call (void* arg0, void* arg1, void* arg2, void* arg3);
void* Call (void* arg0, void* arg1, void* arg2, void* arg3, void* arg4);
void* Call (void* arg0, void* arg1, void* arg2, void* arg3, void* arg4, void* arg5);
void* Get () const;
bool IsCFFIValue ();
bool IsHLValue ();
Expand Down
Loading
Loading