mirror of
https://github.com/Open-Shell/Open-Shell-Menu.git
synced 2026-04-14 04:38:26 +10:00
35 lines
1.1 KiB
C
35 lines
1.1 KiB
C
// Classic Shell (c) 2009-2017, Ivo Beltchev
|
|
// Open-Shell (c) 2017-2018, The Open-Shell Team
|
|
// Confidential information of Ivo Beltchev. Not for disclosure or distribution without prior written consent from the author
|
|
|
|
#pragma once
|
|
|
|
#ifdef CLASSICIEDLL_EXPORTS
|
|
#define CSIEAPI __declspec(dllexport)
|
|
#else
|
|
#define CSIEAPI __declspec(dllimport)
|
|
#endif
|
|
|
|
void InitClassicIE( HMODULE hModule );
|
|
CSIEAPI void ShowIESettings( void );
|
|
CSIEAPI DWORD GetIESettings( void );
|
|
CSIEAPI void CheckForNewVersionIE( void );
|
|
CSIEAPI void WaitDllInitThread( void );
|
|
CSIEAPI void DllLogToFile( const wchar_t *location, const wchar_t *message, ... );
|
|
|
|
#ifndef _WIN64
|
|
CSIEAPI bool DllSaveAdmx( const char *admxFile, const char *admlFile, const char *docFile, const wchar_t *language );
|
|
#endif
|
|
CSIEAPI bool DllImportSettingsXml( const wchar_t *fname );
|
|
CSIEAPI bool DllExportSettingsXml( const wchar_t *fname );
|
|
|
|
enum
|
|
{
|
|
IE_SETTING_CAPTION=1,
|
|
IE_SETTING_PROGRESS=2,
|
|
IE_SETTING_ZONE=4,
|
|
IE_SETTING_PROTECTED=8,
|
|
};
|
|
|
|
#define CIE_LOG L"Software\\OpenShell\\ClassicIE\\Settings|LogLevel|%LOCALAPPDATA%\\OpenShell\\ClassicIELog.txt"
|