mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-14 00:20:51 +00:00
4497d7fdaa
As a bonus, add support for XZ-compressed files in ZIP
20 lines
298 B
C
20 lines
298 B
C
/* 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
|