File: DllSecur.h

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 (20 lines) | stat: -rwxr-xr-x 318 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* DllSecur.h -- DLL loading for security
2023-03-03 : Igor Pavlov : Public domain */

#ifndef ZIP7_INC_DLL_SECUR_H
#define ZIP7_INC_DLL_SECUR_H

#include "7zTypes.h"

EXTERN_C_BEGIN

#ifdef _WIN32

void My_SetDefaultDllDirectories(void);
void LoadSecurityDlls(void);

#endif

EXTERN_C_END

#endif