diff options
author | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2023-06-21 00:00:00 +0000 |
---|---|---|
committer | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2023-12-17 14:59:19 +0500 |
commit | 5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch) | |
tree | fe5e17420300b715021a76328444088d32047963 /C/Util/LzmaLib/LzmaLibExports.c | |
parent | 93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff) | |
download | 7zip-23.01.tar.gz 7zip-23.01.tar.bz2 7zip-23.01.zip |
23.0123.01
Diffstat (limited to 'C/Util/LzmaLib/LzmaLibExports.c')
-rw-r--r-- | C/Util/LzmaLib/LzmaLibExports.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/C/Util/LzmaLib/LzmaLibExports.c b/C/Util/LzmaLib/LzmaLibExports.c index 4a28a9a..a46c9a8 100644 --- a/C/Util/LzmaLib/LzmaLibExports.c +++ b/C/Util/LzmaLib/LzmaLibExports.c | |||
@@ -1,14 +1,15 @@ | |||
1 | /* LzmaLibExports.c -- LZMA library DLL Entry point | 1 | /* LzmaLibExports.c -- LZMA library DLL Entry point |
2 | 2015-11-08 : Igor Pavlov : Public domain */ | 2 | 2023-03-05 : Igor Pavlov : Public domain */ |
3 | 3 | ||
4 | #include "../../Precomp.h" | 4 | #include "Precomp.h" |
5 | 5 | ||
6 | #include <windows.h> | 6 | #include "../../7zWindows.h" |
7 | 7 | ||
8 | BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved); | ||
8 | BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved) | 9 | BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved) |
9 | { | 10 | { |
10 | UNUSED_VAR(hInstance); | 11 | UNUSED_VAR(hInstance) |
11 | UNUSED_VAR(dwReason); | 12 | UNUSED_VAR(dwReason) |
12 | UNUSED_VAR(lpReserved); | 13 | UNUSED_VAR(lpReserved) |
13 | return TRUE; | 14 | return TRUE; |
14 | } | 15 | } |