mirror of
https://github.com/Open-Shell/Open-Shell-Menu.git
synced 2026-04-21 03:04:36 +10:00
Initial commit
This commit is contained in:
33
ClassicShellSrc/ClassicIE/ClassicIEDLL/ClassicIEDLL.h
Normal file
33
ClassicShellSrc/ClassicIE/ClassicIEDLL/ClassicIEDLL.h
Normal file
@@ -0,0 +1,33 @@
|
||||
// Classic Shell (c) 2009-2016, Ivo Beltchev
|
||||
// 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\\IvoSoft\\ClassicIE\\Settings|LogLevel|%LOCALAPPDATA%\\ClassicShell\\ClassicIELog.txt"
|
||||
Reference in New Issue
Block a user