Skip to content
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -252,3 +252,4 @@ paket-files/
*.sln.iml

/ReClass.NET/Resources/BuildDate.txt
*.bat
19 changes: 19 additions & 0 deletions NativeCore/.vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"C:/Users/josua/AppData/Local/Android/android-ndk-r21/sysroot/usr/include",
"C:/Users/josua/Documents/Proj/FreeFireHackV2/src",
"C:/Users/josua/source/repos/ProfilerTIme/ReClass.NET/NativeCore/Shared",
"C:/Users/josua/source/repos/ProfilerTIme/ReClass.NET/NativeCore/Unix"
],
"defines": [],
"compilerPath": "C:\\Users\\josua\\AppData\\Local\\Android\\android-ndk-r21\\ndk-build.cmd",
"cppStandard": "c++14",
"IntelliSenseMode": "gcc-arm"
}
],
"version": 4
}
78 changes: 78 additions & 0 deletions NativeCore/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
{
"files.associations": {
"*.embeddedhtml": "html",
"*.php": "php",
"xiosbase": "cpp",
"vector": "cpp",
"string": "cpp",
"unordered_map": "cpp",
"algorithm": "cpp",
"atomic": "cpp",
"bit": "cpp",
"cctype": "cpp",
"chrono": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"codecvt": "cpp",
"compare": "cpp",
"concepts": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"exception": "cpp",
"filesystem": "cpp",
"functional": "cpp",
"initializer_list": "cpp",
"iomanip": "cpp",
"ios": "cpp",
"iosfwd": "cpp",
"istream": "cpp",
"iterator": "cpp",
"limits": "cpp",
"list": "cpp",
"locale": "cpp",
"memory": "cpp",
"new": "cpp",
"ostream": "cpp",
"ratio": "cpp",
"sstream": "cpp",
"stdexcept": "cpp",
"stop_token": "cpp",
"streambuf": "cpp",
"system_error": "cpp",
"thread": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"typeinfo": "cpp",
"utility": "cpp",
"xfacet": "cpp",
"xhash": "cpp",
"xlocale": "cpp",
"xlocbuf": "cpp",
"xlocinfo": "cpp",
"xlocmes": "cpp",
"xlocmon": "cpp",
"xlocnum": "cpp",
"xloctime": "cpp",
"xmemory": "cpp",
"xstddef": "cpp",
"xstring": "cpp",
"xtr1common": "cpp",
"xutility": "cpp",
"charconv": "cpp",
"csignal": "cpp",
"format": "cpp",
"forward_list": "cpp",
"fstream": "cpp",
"iostream": "cpp",
"map": "cpp",
"mutex": "cpp",
"optional": "cpp",
"xtree": "cpp",
"deque": "cpp"
}
}
21 changes: 21 additions & 0 deletions NativeCore/Android/jni/Android.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)

LOCAL_MODULE := rcserver
LOCAL_C_INCLUDES += \
$(LOCAL_PATH)/../../Shared \
$(LOCAL_PATH)/../../Unix \
$(LOCAL_PATH)/../..

LOCAL_SRC_FILES := \
main.cpp \
Client.cpp \
Utils.cpp \
../../Unix/LinuxProcess.cpp \
../../Unix/LinuxSocketWrapper.cpp \
../../Shared/SocketWrapper.cpp

LOCAL_CFLAGS := -fexceptions
LOCAL_CPPFLAGS := -Wno-format -Wno-address-of-packed-member

include $(BUILD_EXECUTABLE)
2 changes: 2 additions & 0 deletions NativeCore/Android/jni/Application.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
APP_STL := c++_static
APP_ABI := armeabi-v7a arm64-v8a x86
Loading