diff --git a/ScreenshotBOF/bofdefs.h b/ScreenshotBOF/bofdefs.h index c0517b7..3b798f8 100644 --- a/ScreenshotBOF/bofdefs.h +++ b/ScreenshotBOF/bofdefs.h @@ -203,6 +203,7 @@ DECLSPEC_IMPORT void WINAPI MSVCRT$sprintf(char*, char[], ...); DECLSPEC_IMPORT int __cdecl MSVCRT$_vsnprintf(LPSTR, size_t, LPCSTR, va_list); DECLSPEC_IMPORT size_t __cdecl MSVCRT$wcslen(LPCWSTR); DECLSPEC_IMPORT int __cdecl MSVCRT$strcmp(const char* _Str1, const char* _Str2); +DECLSPEC_IMPORT size_t __cdecl MSVCRT$strlen(const char* str); DECLSPEC_IMPORT LPSTR WINAPI Kernel32$lstrcpyA(LPSTR lpString1, LPCSTR lpString2); DECLSPEC_IMPORT LPSTR WINAPI Kernel32$lstrcatA(LPSTR lpString1, LPCSTR lpString2); DECLSPEC_IMPORT LPSTR WINAPI Kernel32$lstrcpynA(LPSTR lpString1, LPCSTR lpString2, int iMaxLength); diff --git a/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOF.log b/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOF.log deleted file mode 100644 index 4f036fd..0000000 --- a/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOF.log +++ /dev/null @@ -1,25 +0,0 @@ - Microsoft (R) C/C++ Optimizing Compiler Version 19.27.29111 for x64 - Copyright (C) Microsoft Corporation. All rights reserved. - - cl /c /D BOF /GS- /Fo"intermediary\BOF\x64\\" /TP /c /Fo"intermediary\BOF\x64\source" Source.cpp -cl : Command line warning D9025: overriding '/Fointermediary\BOF\x64\' with '/Fointermediary\BOF\x64\source' - - Source.cpp -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(93): warning C4141: 'dllimport': used more than once -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(96): warning C4141: 'dllimport': used more than once -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(99): warning C4141: 'dllimport': used more than once -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(102): warning C4141: 'dllimport': used more than once -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(105): warning C4141: 'dllimport': used more than once -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(114): warning C4141: 'dllimport': used more than once -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(117): warning C4141: 'dllimport': used more than once -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(120): warning C4141: 'dllimport': used more than once -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(247): warning C4005: 'ZeroMemory': macro redefinition - C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\um\minwinbase.h(39): note: see previous definition of 'ZeroMemory' -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(270): warning C4005: 'malloc': macro redefinition - C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(245): note: see previous definition of 'malloc' - C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\intermediary\BOF\x64\source.obj - 1 File(s) copied - enumerating sections... - found debug section.. zeroing it... - closing stream... - done! diff --git a/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOF.tlog/CL.command.1.tlog b/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOF.tlog/CL.command.1.tlog deleted file mode 100644 index 3fa1b09..0000000 Binary files a/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOF.tlog/CL.command.1.tlog and /dev/null differ diff --git a/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOF.tlog/CL.read.1.tlog b/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOF.tlog/CL.read.1.tlog deleted file mode 100644 index dbce385..0000000 Binary files a/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOF.tlog/CL.read.1.tlog and /dev/null differ diff --git a/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOF.tlog/CL.write.1.tlog b/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOF.tlog/CL.write.1.tlog deleted file mode 100644 index 0a7a90a..0000000 Binary files a/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOF.tlog/CL.write.1.tlog and /dev/null differ diff --git a/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOF.tlog/ScreenshotBOF.lastbuildstate b/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOF.tlog/ScreenshotBOF.lastbuildstate deleted file mode 100644 index 89e7d53..0000000 --- a/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOF.tlog/ScreenshotBOF.lastbuildstate +++ /dev/null @@ -1,2 +0,0 @@ -PlatformToolSet=v142:VCToolArchitecture=Native32Bit:VCToolsVersion=14.27.29110:TargetPlatformVersion=10.0.18362.0: -BOF|x64|C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\| diff --git a/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOF.vcxproj.FileListAbsolute.txt b/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOF.vcxproj.FileListAbsolute.txt deleted file mode 100644 index e69de29..0000000 diff --git a/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOFx64.Build.CppClean.log b/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOFx64.Build.CppClean.log deleted file mode 100644 index ca004b5..0000000 --- a/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOFx64.Build.CppClean.log +++ /dev/null @@ -1,5 +0,0 @@ -c:\users\ethan\downloads\avexception\screenshotbof\screenshotbof\intermediary\bof\x64\source.obj -c:\users\ethan\downloads\avexception\screenshotbof\bin\bof\screenshotbof.x64.obj -c:\users\ethan\downloads\avexception\screenshotbof\screenshotbof\intermediary\bof\x64\screenshotbof.tlog\cl.command.1.tlog -c:\users\ethan\downloads\avexception\screenshotbof\screenshotbof\intermediary\bof\x64\screenshotbof.tlog\cl.read.1.tlog -c:\users\ethan\downloads\avexception\screenshotbof\screenshotbof\intermediary\bof\x64\screenshotbof.tlog\cl.write.1.tlog diff --git a/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOFx64.recipe b/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOFx64.recipe deleted file mode 100644 index cc60474..0000000 --- a/ScreenshotBOF/intermediary/BOF/x64/ScreenshotBOFx64.recipe +++ /dev/null @@ -1,7 +0,0 @@ - - - C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\bin\BOF\ScreenshotBOFx64 - - - - \ No newline at end of file diff --git a/ScreenshotBOF/intermediary/BOF/x64/source.obj b/ScreenshotBOF/intermediary/BOF/x64/source.obj deleted file mode 100644 index adc548d..0000000 Binary files a/ScreenshotBOF/intermediary/BOF/x64/source.obj and /dev/null differ diff --git a/ScreenshotBOF/intermediary/BOF/x86/ScreenshotBOF.log b/ScreenshotBOF/intermediary/BOF/x86/ScreenshotBOF.log deleted file mode 100644 index be499c4..0000000 --- a/ScreenshotBOF/intermediary/BOF/x86/ScreenshotBOF.log +++ /dev/null @@ -1,25 +0,0 @@ - Microsoft (R) C/C++ Optimizing Compiler Version 19.27.29111 for x86 - Copyright (C) Microsoft Corporation. All rights reserved. - - cl /c /Oy- /D BOF /GS- /Fo"intermediary\BOF\x86\\" /TP /analyze- /c /Fo"intermediary\BOF\x86\source" Source.cpp -cl : Command line warning D9025: overriding '/Fointermediary\BOF\x86\' with '/Fointermediary\BOF\x86\source' - - Source.cpp -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(93): warning C4141: 'dllimport': used more than once -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(96): warning C4141: 'dllimport': used more than once -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(99): warning C4141: 'dllimport': used more than once -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(102): warning C4141: 'dllimport': used more than once -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(105): warning C4141: 'dllimport': used more than once -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(114): warning C4141: 'dllimport': used more than once -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(117): warning C4141: 'dllimport': used more than once -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(120): warning C4141: 'dllimport': used more than once -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(247): warning C4005: 'ZeroMemory': macro redefinition - C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\um\minwinbase.h(39): note: see previous definition of 'ZeroMemory' -C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(270): warning C4005: 'malloc': macro redefinition - C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\bofdefs.h(245): note: see previous definition of 'malloc' - C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\ScreenshotBOF\intermediary\BOF\x86\source.obj - 1 File(s) copied - enumerating sections... - found debug section.. zeroing it... - closing stream... - done! diff --git a/ScreenshotBOF/intermediary/BOF/x86/ScreenshotBOF.tlog/CL.command.1.tlog b/ScreenshotBOF/intermediary/BOF/x86/ScreenshotBOF.tlog/CL.command.1.tlog deleted file mode 100644 index b9c1bd9..0000000 Binary files a/ScreenshotBOF/intermediary/BOF/x86/ScreenshotBOF.tlog/CL.command.1.tlog and /dev/null differ diff --git a/ScreenshotBOF/intermediary/BOF/x86/ScreenshotBOF.tlog/CL.read.1.tlog b/ScreenshotBOF/intermediary/BOF/x86/ScreenshotBOF.tlog/CL.read.1.tlog deleted file mode 100644 index a2f103d..0000000 Binary files a/ScreenshotBOF/intermediary/BOF/x86/ScreenshotBOF.tlog/CL.read.1.tlog and /dev/null differ diff --git a/ScreenshotBOF/intermediary/BOF/x86/ScreenshotBOF.tlog/CL.write.1.tlog b/ScreenshotBOF/intermediary/BOF/x86/ScreenshotBOF.tlog/CL.write.1.tlog deleted file mode 100644 index 60eb2a7..0000000 Binary files a/ScreenshotBOF/intermediary/BOF/x86/ScreenshotBOF.tlog/CL.write.1.tlog and /dev/null differ diff --git a/ScreenshotBOF/intermediary/BOF/x86/ScreenshotBOF.tlog/ScreenshotBOF.lastbuildstate b/ScreenshotBOF/intermediary/BOF/x86/ScreenshotBOF.tlog/ScreenshotBOF.lastbuildstate deleted file mode 100644 index d2752a1..0000000 --- a/ScreenshotBOF/intermediary/BOF/x86/ScreenshotBOF.tlog/ScreenshotBOF.lastbuildstate +++ /dev/null @@ -1,2 +0,0 @@ -PlatformToolSet=v142:VCToolArchitecture=Native32Bit:VCToolsVersion=14.27.29110:TargetPlatformVersion=10.0.18362.0: -BOF|Win32|C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\| diff --git a/ScreenshotBOF/intermediary/BOF/x86/ScreenshotBOFx32.recipe b/ScreenshotBOF/intermediary/BOF/x86/ScreenshotBOFx32.recipe deleted file mode 100644 index 3a3b6dd..0000000 --- a/ScreenshotBOF/intermediary/BOF/x86/ScreenshotBOFx32.recipe +++ /dev/null @@ -1,7 +0,0 @@ - - - C:\Users\Ethan\Downloads\AVException\ScreenshotBOF\bin\BOF\ScreenshotBOFx32 - - - - \ No newline at end of file diff --git a/ScreenshotBOF/intermediary/BOF/x86/source.obj b/ScreenshotBOF/intermediary/BOF/x86/source.obj deleted file mode 100644 index ef2fd2b..0000000 Binary files a/ScreenshotBOF/intermediary/BOF/x86/source.obj and /dev/null differ diff --git a/bin/BOF/ScreenshotBOF.x64.obj b/bin/BOF/ScreenshotBOF.x64.obj index dbb1e12..4b274c7 100644 Binary files a/bin/BOF/ScreenshotBOF.x64.obj and b/bin/BOF/ScreenshotBOF.x64.obj differ diff --git a/bin/BOF/ScreenshotBOF.x86.obj b/bin/BOF/ScreenshotBOF.x86.obj index 2ae0028..57231f5 100644 Binary files a/bin/BOF/ScreenshotBOF.x86.obj and b/bin/BOF/ScreenshotBOF.x86.obj differ