File: LzmaLibExports.c

package info (click to toggle)
7zip-rar 24.09%2Bds-3~bpo12%2B1
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm-backports
  • size: 13,324 kB
  • sloc: cpp: 211,225; ansic: 39,085; asm: 4,357; makefile: 2,125
file content (15 lines) | stat: -rwxr-xr-x 408 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* LzmaLibExports.c -- LZMA library DLL Entry point
2023-03-05 : Igor Pavlov : Public domain */

#include "Precomp.h"

#include "../../7zWindows.h"

BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved);
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
{
  UNUSED_VAR(hInstance)
  UNUSED_VAR(dwReason)
  UNUSED_VAR(lpReserved)
  return TRUE;
}