From 4c8b52fc94c04c4b3d338c2501971ae348f5b3e5 Mon Sep 17 00:00:00 2001 From: navewindre Date: Tue, 16 Jul 2024 07:19:43 +0200 Subject: =?UTF-8?q?=E3=82=84=E3=83=BC=E3=83=BC=E3=83=BC=E3=83=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dwm/dwm.vcxproj | 159 ++++++++++++++++++++++++++++++++++++++++++++++++ dwm/dwm.vcxproj.filters | 30 +++++++++ dwm/dwm.vcxproj.user | 4 ++ dwm/source.cpp | 12 ++++ dwm/typedef.h | 2 + dwm/util.h | 2 + 6 files changed, 209 insertions(+) create mode 100644 dwm/dwm.vcxproj create mode 100644 dwm/dwm.vcxproj.filters create mode 100644 dwm/dwm.vcxproj.user create mode 100644 dwm/source.cpp create mode 100644 dwm/typedef.h create mode 100644 dwm/util.h (limited to 'dwm') diff --git a/dwm/dwm.vcxproj b/dwm/dwm.vcxproj new file mode 100644 index 0000000..bab2871 --- /dev/null +++ b/dwm/dwm.vcxproj @@ -0,0 +1,159 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + Win32Proj + {33618e8d-258b-4ce2-968c-ae0ea1f2162e} + dwm + 10.0 + + + + Application + true + v142 + Unicode + + + DynamicLibrary + false + v142 + true + Unicode + + + DynamicLibrary + true + v142 + Unicode + + + DynamicLibrary + false + v142 + true + Unicode + + + + + + + + + + + + + + + + + + + + + true + + + false + + + true + $(SolutionDir)\bin\ + ..\intermediate\X64\$(Configuration)\ + dwmhook + + + false + $(SolutionDir)\bin\ + ..\intermediate\X64\$(Configuration)\ + dwmhook + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions);X64 + true + stdcpp17 + + + Console + true + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions);X64 + true + stdcpp17 + + + Console + true + true + true + + + + + + + + + + + + + \ No newline at end of file diff --git a/dwm/dwm.vcxproj.filters b/dwm/dwm.vcxproj.filters new file mode 100644 index 0000000..37e74bf --- /dev/null +++ b/dwm/dwm.vcxproj.filters @@ -0,0 +1,30 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Source Files + + + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/dwm/dwm.vcxproj.user b/dwm/dwm.vcxproj.user new file mode 100644 index 0000000..88a5509 --- /dev/null +++ b/dwm/dwm.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/dwm/source.cpp b/dwm/source.cpp new file mode 100644 index 0000000..c8d4951 --- /dev/null +++ b/dwm/source.cpp @@ -0,0 +1,12 @@ +#include +#include "typedef.h" + + +int __stdcall DllMain( void* hinst, U32 reason, void* reserved ) { + // coca cola yayo bought me this + if( reason == DLL_PROCESS_ATTACH ) { + // do a fucking EPIC here + + return 1; + } +} \ No newline at end of file diff --git a/dwm/typedef.h b/dwm/typedef.h new file mode 100644 index 0000000..8d532d4 --- /dev/null +++ b/dwm/typedef.h @@ -0,0 +1,2 @@ +#pragma once +#include "../src/typedef.h" \ No newline at end of file diff --git a/dwm/util.h b/dwm/util.h new file mode 100644 index 0000000..b723112 --- /dev/null +++ b/dwm/util.h @@ -0,0 +1,2 @@ +#pragma once +#include "../src/util.h" \ No newline at end of file -- cgit v1.2.3