xref: /third_party/lzma/C/Util/LzmaLib/LzmaLibExports.c
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/lzma/C/Util/LzmaLib/
1370b324cSopenharmony_ci/* LzmaLibExports.c -- LZMA library DLL Entry point
2370b324cSopenharmony_ci2023-03-05 : Igor Pavlov : Public domain */
3370b324cSopenharmony_ci
4370b324cSopenharmony_ci#include "Precomp.h"
5370b324cSopenharmony_ci
6370b324cSopenharmony_ci#include "../../7zWindows.h"
7370b324cSopenharmony_ci
8370b324cSopenharmony_ciBOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved);
9370b324cSopenharmony_ciBOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
10370b324cSopenharmony_ci{
11370b324cSopenharmony_ci  UNUSED_VAR(hInstance)
12370b324cSopenharmony_ci  UNUSED_VAR(dwReason)
13370b324cSopenharmony_ci  UNUSED_VAR(lpReserved)
14370b324cSopenharmony_ci  return TRUE;
15370b324cSopenharmony_ci}
16

Indexes created Thu Nov 07 10:32:03 CST 2024