File tree 2 files changed +19
-0
lines changed
2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,16 @@ target("cyber_engine_tweaks")
105
105
cprint (" Cyber Engine Tweaks installed at: ${underline}%s" , " $(installpath)" )
106
106
end )
107
107
108
+ target (" fake_cyber_engine_tweaks" )
109
+ set_kind (" shared" )
110
+ set_group (" yawn" )
111
+ set_filename (" cyber_engine_tweaks.asi" )
112
+ add_files (" yawn/dllmain.cpp" )
113
+
114
+ on_package (function (target )
115
+ os .cp (target :targetfile (), " package/bin/x64/plugins/" )
116
+ end )
117
+
108
118
option (" installpath" )
109
119
set_default (" installpath" )
110
120
set_showmenu (true )
Original file line number Diff line number Diff line change
1
+ #include < windows.h>
2
+
3
+ BOOL WINAPI DllMain (
4
+ HINSTANCE hinstDLL, // handle to DLL module
5
+ DWORD fdwReason, // reason for calling function
6
+ LPVOID lpvReserved ) // reserved
7
+ {
8
+ return TRUE ;
9
+ }
You can’t perform that action at this time.
0 commit comments