2009-02-10 18:37:48 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 2001 Kimmo Pekkola
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2012-01-23 06:36:15 +00:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-02-10 18:37:48 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __RAINMETER_H__
|
|
|
|
#define __RAINMETER_H__
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
2011-02-07 08:02:12 +00:00
|
|
|
#include <list>
|
2009-02-10 18:37:48 +00:00
|
|
|
#include <string>
|
2010-09-21 22:47:53 +00:00
|
|
|
#include "Litestep.h"
|
|
|
|
#include "MeterWindow.h"
|
2009-02-10 18:37:48 +00:00
|
|
|
|
|
|
|
#define MAX_LINE_LENGTH 4096
|
|
|
|
|
|
|
|
#define APPNAME L"Rainmeter"
|
|
|
|
#ifdef _WIN64
|
2011-08-28 10:58:26 +00:00
|
|
|
#define APPBITS L"64-bit"
|
2009-02-10 18:37:48 +00:00
|
|
|
#else
|
2011-08-28 10:58:26 +00:00
|
|
|
#define APPBITS L"32-bit"
|
2009-02-10 18:37:48 +00:00
|
|
|
#endif
|
2011-08-28 10:58:26 +00:00
|
|
|
#define WIDEN2(x) L ## x
|
|
|
|
#define WIDEN(x) WIDEN2(x)
|
|
|
|
#define APPDATE WIDEN(__DATE__)
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2012-02-14 17:00:07 +00:00
|
|
|
#define RAINMETER_CLASS_NAME L"DummyRainWClass"
|
|
|
|
#define RAINMETER_WINDOW_NAME L"Rainmeter control window"
|
|
|
|
|
2009-02-10 18:37:48 +00:00
|
|
|
struct GlobalConfig
|
|
|
|
{
|
|
|
|
double netInSpeed;
|
|
|
|
double netOutSpeed;
|
|
|
|
};
|
|
|
|
|
2011-02-07 08:02:12 +00:00
|
|
|
class CConfigParser;
|
|
|
|
class CTrayWindow;
|
|
|
|
|
2009-02-10 18:37:48 +00:00
|
|
|
class CRainmeter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
struct CONFIG
|
|
|
|
{
|
|
|
|
std::wstring config;
|
|
|
|
std::vector<std::wstring> iniFiles;
|
2011-10-29 10:36:07 +00:00
|
|
|
UINT commandBase;
|
2009-02-10 18:37:48 +00:00
|
|
|
int active;
|
2011-12-09 03:28:19 +00:00
|
|
|
|
|
|
|
CONFIG() {}
|
|
|
|
~CONFIG() {}
|
|
|
|
|
|
|
|
CONFIG(CONFIG&& r) :
|
|
|
|
config(std::move(r.config)),
|
|
|
|
iniFiles(std::move(r.iniFiles)),
|
|
|
|
commandBase(r.commandBase),
|
|
|
|
active(r.active)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CONFIG& operator=(CONFIG&& r)
|
|
|
|
{
|
|
|
|
config = std::move(r.config);
|
|
|
|
iniFiles = std::move(r.iniFiles);
|
|
|
|
commandBase = r.commandBase;
|
|
|
|
active = r.active;
|
|
|
|
return *this;
|
|
|
|
}
|
2009-02-10 18:37:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct CONFIGMENU
|
|
|
|
{
|
|
|
|
std::wstring name;
|
|
|
|
size_t index;
|
|
|
|
std::vector<CONFIGMENU> children;
|
2011-12-09 03:28:19 +00:00
|
|
|
|
|
|
|
CONFIGMENU() {}
|
|
|
|
~CONFIGMENU() {}
|
|
|
|
|
|
|
|
CONFIGMENU(CONFIGMENU&& r) :
|
|
|
|
name(std::move(r.name)),
|
|
|
|
index(r.index),
|
|
|
|
children(std::move(r.children))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CONFIGMENU& operator=(CONFIGMENU&& r)
|
|
|
|
{
|
|
|
|
name = std::move(r.name);
|
|
|
|
index = r.index;
|
|
|
|
children = std::move(r.children);
|
|
|
|
return *this;
|
|
|
|
}
|
2009-02-10 18:37:48 +00:00
|
|
|
};
|
|
|
|
|
2010-08-26 20:50:36 +00:00
|
|
|
struct LOG_INFO
|
|
|
|
{
|
2011-08-28 10:58:26 +00:00
|
|
|
int level;
|
2010-08-26 20:50:36 +00:00
|
|
|
std::wstring timestamp;
|
|
|
|
std::wstring message;
|
|
|
|
};
|
|
|
|
|
2009-02-10 18:37:48 +00:00
|
|
|
CRainmeter();
|
|
|
|
~CRainmeter();
|
|
|
|
|
2012-02-14 17:00:07 +00:00
|
|
|
int Initialize(HINSTANCE hInstance, LPCWSTR szPath);
|
|
|
|
int MessagePump();
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2010-10-19 22:03:32 +00:00
|
|
|
CConfigParser* GetCurrentParser() { return m_CurrentParser; }
|
|
|
|
void SetCurrentParser(CConfigParser* parser) { m_CurrentParser = parser; }
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2010-10-19 22:03:32 +00:00
|
|
|
CTrayWindow* GetTrayWindow() { return m_TrayWindow; }
|
2009-02-10 18:37:48 +00:00
|
|
|
|
|
|
|
CMeterWindow* GetMeterWindow(const std::wstring& config);
|
2010-12-16 17:04:14 +00:00
|
|
|
CMeterWindow* GetMeterWindowByINI(const std::wstring& ini_searching);
|
2011-09-08 23:10:41 +00:00
|
|
|
std::pair<int, int> GetMeterWindowIndex(const std::wstring& config, const std::wstring& iniFile);
|
|
|
|
std::pair<int, int> GetMeterWindowIndex(CMeterWindow* meterWindow) { return GetMeterWindowIndex(meterWindow->GetSkinName(), meterWindow->GetSkinIniFile()); }
|
2011-10-29 10:36:07 +00:00
|
|
|
std::pair<int, int> GetMeterWindowIndex(UINT menuCommand);
|
2011-09-08 14:39:25 +00:00
|
|
|
|
2010-03-23 16:15:07 +00:00
|
|
|
CMeterWindow* GetMeterWindow(HWND hwnd);
|
2011-12-04 22:18:40 +00:00
|
|
|
void GetMeterWindowsByLoadOrder(std::multimap<int, CMeterWindow*>& windows, const std::wstring& group = std::wstring());
|
2012-02-03 10:15:18 +00:00
|
|
|
std::map<std::wstring, CMeterWindow*>& GetAllMeterWindows() { return m_MeterWindows; }
|
2010-10-19 22:03:32 +00:00
|
|
|
const std::vector<CONFIG>& GetAllConfigs() { return m_ConfigStrings; }
|
|
|
|
const std::vector<std::wstring>& GetAllThemes() { return m_Themes; }
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2012-02-03 10:15:18 +00:00
|
|
|
void DeleteMeterWindow(CMeterWindow* meterWindow, bool force = false);
|
2012-02-02 12:05:14 +00:00
|
|
|
|
2009-02-10 18:37:48 +00:00
|
|
|
void ActivateConfig(int configIndex, int iniIndex);
|
2012-02-03 10:15:18 +00:00
|
|
|
void DeactivateConfig(CMeterWindow* meterWindow, int configIndex, bool save = true);
|
2011-10-29 10:36:07 +00:00
|
|
|
void ToggleConfig(int configIndex, int iniIndex);
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2010-10-19 22:03:32 +00:00
|
|
|
const std::wstring& GetPath() { return m_Path; }
|
|
|
|
const std::wstring& GetIniFile() { return m_IniFile; }
|
|
|
|
const std::wstring& GetLogFile() { return m_LogFile; }
|
|
|
|
const std::wstring& GetSkinPath() { return m_SkinPath; }
|
|
|
|
const std::wstring& GetPluginPath() { return m_PluginPath; }
|
2010-11-25 22:00:34 +00:00
|
|
|
const std::wstring& GetAddonPath() { return m_AddonPath; }
|
2010-10-19 22:03:32 +00:00
|
|
|
std::wstring GetSettingsPath() { return ExtractPath(m_IniFile); }
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2010-11-25 22:00:34 +00:00
|
|
|
const std::wstring& GetDrive() { return m_Drive; }
|
|
|
|
|
2010-10-19 22:03:32 +00:00
|
|
|
const std::wstring& GetConfigEditor() { return m_ConfigEditor; }
|
|
|
|
const std::wstring& GetLogViewer() { return m_LogViewer; }
|
|
|
|
const std::wstring& GetStatsDate() { return m_StatsDate; }
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2012-02-14 17:00:07 +00:00
|
|
|
HWND GetWindow() { return m_Window; }
|
|
|
|
|
2010-10-19 22:03:32 +00:00
|
|
|
HINSTANCE GetInstance() { return m_Instance; }
|
2011-09-23 16:28:38 +00:00
|
|
|
HINSTANCE GetResourceInstance() { return m_ResourceInstance; }
|
2011-10-01 17:39:09 +00:00
|
|
|
LCID GetResourceLCID() { return m_ResourceLCID; }
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2011-09-28 18:28:35 +00:00
|
|
|
bool GetDebug() { return m_Debug; }
|
2010-07-07 23:46:44 +00:00
|
|
|
|
2011-09-28 18:28:35 +00:00
|
|
|
GlobalConfig& GetGlobalConfig() { return m_GlobalConfig; }
|
2009-02-10 18:37:48 +00:00
|
|
|
|
|
|
|
void ReloadSettings();
|
|
|
|
|
|
|
|
void UpdateStats();
|
|
|
|
void ReadStats();
|
2009-07-27 12:30:28 +00:00
|
|
|
void WriteStats(bool bForce);
|
2009-02-10 18:37:48 +00:00
|
|
|
void ResetStats();
|
|
|
|
|
2011-08-28 10:58:26 +00:00
|
|
|
bool GetDisableVersionCheck() { return m_DisableVersionCheck; }
|
|
|
|
void SetDisableVersionCheck(bool check);
|
|
|
|
bool GetNewVersion() { return m_NewVersion; }
|
|
|
|
void SetNewVersion(bool newver) { m_NewVersion = newver; }
|
2010-07-07 23:46:44 +00:00
|
|
|
|
|
|
|
bool GetLogging() { return m_Logging; }
|
2010-07-08 10:59:06 +00:00
|
|
|
void StartLogging();
|
|
|
|
void StopLogging();
|
|
|
|
void DeleteLogFile();
|
2010-09-19 09:21:25 +00:00
|
|
|
|
2010-11-24 15:34:07 +00:00
|
|
|
bool GetDisableRDP() { return m_DisableRDP; }
|
|
|
|
|
2010-11-27 10:57:59 +00:00
|
|
|
bool GetDisableDragging() { return m_DisableDragging; }
|
|
|
|
void SetDisableDragging(bool dragging);
|
2010-11-24 15:34:07 +00:00
|
|
|
|
2011-11-10 11:50:47 +00:00
|
|
|
bool IsNormalStayDesktop() { return m_NormalStayDesktop; }
|
|
|
|
|
2011-08-28 10:58:26 +00:00
|
|
|
void AddAboutLogInfo(int level, LPCWSTR time, LPCWSTR message);
|
2011-09-03 16:45:29 +00:00
|
|
|
const std::list<LOG_INFO>& GetAboutLogData() { return m_LogData; }
|
2010-07-08 10:59:06 +00:00
|
|
|
|
2010-07-07 23:46:44 +00:00
|
|
|
void SetDebug(bool debug);
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2010-08-03 15:10:42 +00:00
|
|
|
bool IsMenuActive() { return m_MenuActive; }
|
2009-02-10 18:37:48 +00:00
|
|
|
void ShowContextMenu(POINT pos, CMeterWindow* meterWindow);
|
|
|
|
|
2010-11-11 20:24:59 +00:00
|
|
|
const std::wstring& GetTrayExecuteL() { return m_TrayExecuteL; }
|
|
|
|
const std::wstring& GetTrayExecuteR() { return m_TrayExecuteR; }
|
|
|
|
const std::wstring& GetTrayExecuteM() { return m_TrayExecuteM; }
|
|
|
|
const std::wstring& GetTrayExecuteDR() { return m_TrayExecuteDR; }
|
|
|
|
const std::wstring& GetTrayExecuteDL() { return m_TrayExecuteDL; }
|
|
|
|
const std::wstring& GetTrayExecuteDM() { return m_TrayExecuteDM; }
|
2009-02-10 18:37:48 +00:00
|
|
|
|
|
|
|
void ExecuteCommand(const WCHAR* command, CMeterWindow* meterWindow);
|
2012-02-14 17:00:07 +00:00
|
|
|
void DelayedExecuteCommand(const WCHAR* command);
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2010-03-29 21:50:05 +00:00
|
|
|
void RefreshAll();
|
|
|
|
|
2011-09-04 07:40:12 +00:00
|
|
|
void LoadTheme(const std::wstring& name);
|
|
|
|
void PreserveSetting(const std::wstring& from, LPCTSTR key, bool replace = true);
|
|
|
|
|
2010-08-03 15:10:42 +00:00
|
|
|
static std::vector<std::wstring> ParseString(LPCTSTR str);
|
2009-07-26 21:08:46 +00:00
|
|
|
static std::wstring ExtractPath(const std::wstring& strFilePath);
|
2009-08-26 17:37:15 +00:00
|
|
|
static void ExpandEnvironmentVariables(std::wstring& strPath);
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2011-08-28 10:58:26 +00:00
|
|
|
friend class CDialogManage;
|
|
|
|
|
2009-02-10 18:37:48 +00:00
|
|
|
private:
|
2012-02-14 17:00:07 +00:00
|
|
|
static LRESULT CALLBACK MainWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
|
|
|
2012-02-01 15:55:29 +00:00
|
|
|
void BangWithArgs(BANGCOMMAND bang, const WCHAR* arg, size_t numOfArgs, CMeterWindow* meterWindow);
|
|
|
|
void BangGroupWithArgs(BANGCOMMAND bang, const WCHAR* arg, size_t numOfArgs, CMeterWindow* meterWindow);
|
2012-01-30 08:34:56 +00:00
|
|
|
void Bang_ActivateConfig(const WCHAR* arg);
|
2012-02-07 19:13:59 +00:00
|
|
|
void Bang_DeactivateConfig(const WCHAR* arg, CMeterWindow* meterWindow);
|
2012-01-30 08:34:56 +00:00
|
|
|
void Bang_ToggleConfig(const WCHAR* arg);
|
|
|
|
void Bang_DeactivateConfigGroup(const WCHAR* arg);
|
|
|
|
void Bang_SetClip(const WCHAR* arg);
|
2012-02-04 15:54:30 +00:00
|
|
|
void Bang_SetWallpaper(const WCHAR* arg);
|
2012-02-07 19:13:59 +00:00
|
|
|
void Bang_SkinMenu(const WCHAR* arg, CMeterWindow* meterWindow);
|
2012-01-30 08:34:56 +00:00
|
|
|
void Bang_TrayMenu();
|
2012-02-01 15:55:29 +00:00
|
|
|
void Bang_WriteKeyValue(const WCHAR* arg, CMeterWindow* meterWindow);
|
2011-10-29 10:36:07 +00:00
|
|
|
|
2012-02-01 17:32:03 +00:00
|
|
|
void ExecuteBang(const std::wstring& name, std::wstring& arg, CMeterWindow* meterWindow);
|
|
|
|
|
2011-09-04 18:06:19 +00:00
|
|
|
void ActivateActiveConfigs();
|
2012-02-01 15:55:29 +00:00
|
|
|
void CreateMeterWindow(const std::wstring& config, const std::wstring& iniFile);
|
2010-07-22 00:31:59 +00:00
|
|
|
void WriteActive(const std::wstring& config, int iniIndex);
|
2010-11-11 20:24:59 +00:00
|
|
|
void ScanForConfigs(const std::wstring& path);
|
|
|
|
void ScanForThemes(const std::wstring& path);
|
|
|
|
void ReadGeneralSettings(const std::wstring& iniFile);
|
2011-07-15 16:54:47 +00:00
|
|
|
void SetLoadOrder(int configIndex, int order);
|
2010-03-29 21:50:05 +00:00
|
|
|
int GetLoadOrder(const std::wstring& config);
|
2010-07-10 12:56:37 +00:00
|
|
|
void UpdateDesktopWorkArea(bool reset);
|
2010-07-18 21:35:52 +00:00
|
|
|
HMENU CreateSkinMenu(CMeterWindow* meterWindow, int index, HMENU configMenu);
|
2009-02-10 18:37:48 +00:00
|
|
|
void ChangeSkinIndex(HMENU subMenu, int index);
|
2010-11-11 20:24:59 +00:00
|
|
|
int ScanForConfigsRecursive(const std::wstring& path, std::wstring base, int index, std::vector<CONFIGMENU>& menu, bool DontRecurse);
|
2011-10-29 10:36:07 +00:00
|
|
|
HMENU CreateConfigMenu(HMENU configMenu, const std::vector<CONFIGMENU>& configMenuData);
|
2011-08-19 03:12:01 +00:00
|
|
|
void CreateThemeMenu(HMENU themeMenu);
|
2010-06-23 12:36:39 +00:00
|
|
|
void CreateMonitorMenu(HMENU monitorMenu, CMeterWindow* meterWindow);
|
2010-11-11 20:24:59 +00:00
|
|
|
void CreateDefaultConfigFile(const std::wstring& strFile);
|
2010-07-08 10:59:06 +00:00
|
|
|
void SetLogging(bool logging);
|
2011-05-02 11:58:02 +00:00
|
|
|
void TestSettingsFile(bool bDefaultIniLocation);
|
2009-02-10 18:37:48 +00:00
|
|
|
|
|
|
|
CTrayWindow* m_TrayWindow;
|
|
|
|
|
2011-04-16 20:05:14 +00:00
|
|
|
std::vector<CONFIG> m_ConfigStrings; // All configs found in the given folder
|
2009-02-10 18:37:48 +00:00
|
|
|
std::vector<CONFIGMENU> m_ConfigMenu;
|
2010-07-17 13:02:34 +00:00
|
|
|
std::multimap<int, int> m_ConfigOrders;
|
2012-02-03 10:15:18 +00:00
|
|
|
std::map<std::wstring, CMeterWindow*> m_MeterWindows;
|
2009-08-12 17:11:52 +00:00
|
|
|
std::vector<std::wstring> m_Themes;
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2011-04-16 20:05:14 +00:00
|
|
|
std::wstring m_Path; // Path to the main folder
|
2009-02-10 18:37:48 +00:00
|
|
|
std::wstring m_IniFile; // The main ini file
|
2011-04-16 20:05:14 +00:00
|
|
|
std::wstring m_StatsFile; // The statistics ini file
|
2009-07-21 12:26:50 +00:00
|
|
|
std::wstring m_LogFile; // The log file
|
2009-02-10 18:37:48 +00:00
|
|
|
std::wstring m_SkinPath; // Path to the folder where the skins are
|
|
|
|
std::wstring m_PluginPath; // Path to the folder where the plugins are
|
2010-11-25 22:00:34 +00:00
|
|
|
std::wstring m_AddonPath; // Path to the folder where the addons are
|
|
|
|
|
|
|
|
std::wstring m_Drive;
|
2009-02-10 18:37:48 +00:00
|
|
|
|
|
|
|
std::wstring m_StatsDate; // The date when stats gathering started
|
|
|
|
|
|
|
|
std::wstring m_TrayExecuteL;
|
|
|
|
std::wstring m_TrayExecuteR;
|
|
|
|
std::wstring m_TrayExecuteM;
|
|
|
|
std::wstring m_TrayExecuteDL;
|
|
|
|
std::wstring m_TrayExecuteDR;
|
|
|
|
std::wstring m_TrayExecuteDM;
|
|
|
|
|
2011-09-28 18:28:35 +00:00
|
|
|
bool m_Debug;
|
|
|
|
|
2011-08-28 10:58:26 +00:00
|
|
|
bool m_DisableVersionCheck;
|
|
|
|
bool m_NewVersion;
|
2011-12-09 08:40:19 +00:00
|
|
|
|
2010-07-17 13:02:34 +00:00
|
|
|
bool m_DesktopWorkAreaChanged;
|
|
|
|
bool m_DesktopWorkAreaType; // If true, DesktopWorkArea is treated as "margin"
|
2010-07-10 12:56:37 +00:00
|
|
|
std::map<UINT, RECT> m_DesktopWorkAreas;
|
|
|
|
std::vector<RECT> m_OldDesktopWorkAreas;
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2011-11-10 11:50:47 +00:00
|
|
|
bool m_NormalStayDesktop;
|
|
|
|
|
2010-08-03 15:10:42 +00:00
|
|
|
bool m_MenuActive;
|
|
|
|
|
2010-11-24 15:34:07 +00:00
|
|
|
bool m_DisableRDP;
|
|
|
|
|
2010-11-27 10:57:59 +00:00
|
|
|
bool m_DisableDragging;
|
2010-11-24 15:34:07 +00:00
|
|
|
|
2010-07-07 23:46:44 +00:00
|
|
|
bool m_Logging;
|
|
|
|
|
2010-09-19 09:21:25 +00:00
|
|
|
std::list<LOG_INFO> m_LogData;
|
|
|
|
|
2009-02-10 18:37:48 +00:00
|
|
|
std::wstring m_ConfigEditor;
|
2010-07-07 23:46:44 +00:00
|
|
|
std::wstring m_LogViewer;
|
2009-02-10 18:37:48 +00:00
|
|
|
|
|
|
|
CConfigParser* m_CurrentParser;
|
|
|
|
|
2012-02-14 17:00:07 +00:00
|
|
|
HWND m_Window;
|
|
|
|
|
2009-02-10 18:37:48 +00:00
|
|
|
HINSTANCE m_Instance;
|
2011-09-23 16:28:38 +00:00
|
|
|
HMODULE m_ResourceInstance;
|
2011-10-01 17:39:09 +00:00
|
|
|
LCID m_ResourceLCID;
|
2009-02-10 18:37:48 +00:00
|
|
|
|
|
|
|
ULONG_PTR m_GDIplusToken;
|
|
|
|
|
2011-09-28 18:28:35 +00:00
|
|
|
GlobalConfig m_GlobalConfig;
|
2009-02-10 18:37:48 +00:00
|
|
|
};
|
|
|
|
|
2012-02-04 16:13:04 +00:00
|
|
|
#ifdef LIBRARY_EXPORTS
|
|
|
|
#define EXPORT_PLUGIN EXTERN_C
|
|
|
|
#else
|
|
|
|
#define EXPORT_PLUGIN EXTERN_C __declspec(dllimport)
|
|
|
|
#endif
|
|
|
|
|
2012-02-14 17:00:07 +00:00
|
|
|
EXPORT_PLUGIN int RainmeterMain(HINSTANCE Instance, LPWSTR cmdLine);
|
2009-02-10 18:37:48 +00:00
|
|
|
|
|
|
|
#endif
|