Dedmen Miller
Dedmen Miller
>In the guide there is the DllMain in the Hello_Intercept.cpp. That's what I meant. What guide? Ahh this one https://github.com/intercept/intercept/wiki/Windows-Environment-Setup-and-Sample-Client-Installation#developing-and-installing-a-sample-client
4-6 fixed 3. VS 2017 Update 2 has updated CMake.
Public API should be snake_case. So this is an error in the Source not the wiki
also to 2. you don't even need to define dllmain in a dll apparently. I didn't know that but it seems to work ^^ 5. is also fixed. 6 is...
@prj This issue is about collecting issues with the guides. "Everything is a total mess" isn't helpful in any way. Take the comment above yours as a example. If you...
@prj Intercept is advanced Arma modding. Sorry that we expect people to know how to pack a pbo. The pboprefix is completly irrelevant for Intercept except if you use a...
Thank you, I tried removeddit a couple times over the past months and it never worked, I just assumed its borked forever. Disabling tracking protection fixed it :3
They have force-pushed away all the history for some reason. I've used some git tricks to restore the full history and have put it up on my fork here: https://github.com/dedmen/ts3client-pluginsdk/tree/forcePushRestore
preprocessor tests: ``` #define PREFIX ace #define COMPONENT advanced_ballistics #define QUOTE(x) # x #define MAINPREFIX z #define SUBPREFIX addons #define PATHTOF_SYS(var1,var2,var3) \MAINPREFIX\##var1\SUBPREFIX\##var2\##var3 #define PATHTOF(var1) PATHTOF_SYS(PREFIX,COMPONENT,var1) #define QPATHTOF(var1) QUOTE(PATHTOF(var1)) QPATHTOF(UI\protractor.paa); ```...