Skip to content
Open
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
12 changes: 12 additions & 0 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
BasedOnStyle: Google

BinPackArguments: false
BinPackParameters: false
ColumnLimit: 100
DerivePointerAlignment: false
IncludeBlocks: Preserve
PointerAlignment: Left
AllowShortFunctionsOnASingleLine: Empty
BreakBeforeBraces: Allman
UseTab: Always
NamespaceIndentation: All
3 changes: 3 additions & 0 deletions bitblt-hdr.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,11 @@
<MASM Include="dllproxy\version.asm">
<FileType>Document</FileType>
</MASM>
<None Include=".clang-format" />
<None Include="dllproxy\version.def" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="bitblt_hdr.cpp" />
<ClCompile Include="deps\minhook\src\buffer.c" />
<ClCompile Include="deps\minhook\src\hde\hde32.c" />
<ClCompile Include="deps\minhook\src\hde\hde64.c" />
Expand All @@ -185,6 +187,7 @@
<ClCompile Include="monitor.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="bitblt_hdr.hpp" />
<ClInclude Include="deps\minhook\include\MinHook.h" />
<ClInclude Include="deps\minhook\src\buffer.h" />
<ClInclude Include="deps\minhook\src\hde\hde32.h" />
Expand Down
3 changes: 3 additions & 0 deletions bitblt-hdr.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<None Include="dllproxy\version.def">
<Filter>dllproxy</Filter>
</None>
<None Include=".clang-format" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="main.cpp" />
Expand All @@ -43,6 +44,7 @@
<Filter>deps\minhook</Filter>
</ClCompile>
<ClCompile Include="monitor.cpp" />
<ClCompile Include="bitblt_hdr.cpp" />
</ItemGroup>
<ItemGroup>
<MASM Include="dllproxy\version.asm">
Expand Down Expand Up @@ -82,6 +84,7 @@
<ClInclude Include="utils\trampoline.hpp">
<Filter>utils</Filter>
</ClInclude>
<ClInclude Include="bitblt_hdr.hpp" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="resource.rc" />
Expand Down
Loading