-
-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add libw2k_lsa_auth project. Empty currently.
- Loading branch information
Showing
4 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#include <jni.h> | ||
|
||
/** | ||
* Dummy method to prevent dlsym from loading JNI_OnLoad from libiava. | ||
*/ | ||
JNIEXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) { | ||
return JNI_VERSION_1_8; | ||
} | ||
|
||
/** | ||
* Dummy method to prevent dlsym from loading JNI_OnUnload from libiava. | ||
*/ | ||
JNIEXPORT void JNI_OnUnload(JavaVM* vm, void* reserved) { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<Project> | ||
<Import Sdk="IKVM.Clang.Sdk" Project="Sdk.props" /> | ||
<Import Project="$(MSBuildThisFileDirectory)..\..\targets\openjdk.lib.props" /> | ||
<PropertyGroup Label="Globals"> | ||
<ProjectGuid>78a745d7-706a-4b33-9d21-0eb7b5144c42</ProjectGuid> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetIdentifiers>win7-x64;win7-x86;win10-arm64</TargetIdentifiers> | ||
<TargetName>w2k_lsa_auth</TargetName> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\libjvm\libjvm.clangproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="**\*.cpp" /> | ||
<Compile Include="**\*.c" /> | ||
</ItemGroup> | ||
<Import Sdk="IKVM.Clang.Sdk" Project="Sdk.targets" /> | ||
<Import Project="$(MSBuildThisFileDirectory)..\..\targets\openjdk.lib.targets" /> | ||
</Project> |