Updated installer graphics and made some other minor changes.

This commit is contained in:
Birunthan Mohanathas 2011-02-03 15:52:45 +00:00
parent 249e021001
commit a8aa2825a2
46 changed files with 72 additions and 70 deletions

View File

@ -2,7 +2,7 @@
// Caution! Do not modify this file without changing \install\UpdateApplicationRC.au3 // Caution! Do not modify this file without changing \install\UpdateApplicationRC.au3
// //
#include "resource.h" #include "resource.h"
#include "..\revision-number.h" #include "..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////

View File

@ -23,7 +23,7 @@
#include "Measure.h" #include "Measure.h"
#include "resource.h" #include "resource.h"
#include "AboutDialog.h" #include "AboutDialog.h"
#include "../revision-number.h" #include "../Version.h"
#define LOGTIMER 1 #define LOGTIMER 1
@ -367,7 +367,7 @@ void ScanPlugins()
hSearch = FindFirstFile(files.c_str(), &fileData); hSearch = FindFirstFile(files.c_str(), &fileData);
do do
{ {
if(hSearch == INVALID_HANDLE_VALUE) break; // No more files found if (hSearch == INVALID_HANDLE_VALUE) break; // No more files found
PLUGIN_INFO info; PLUGIN_INFO info;
info.name = fileData.cFileName; info.name = fileData.cFileName;
@ -398,14 +398,14 @@ void ScanPlugins()
} }
else else
{ {
LogWithArgs(LOG_WARNING, L"Unable to load library: \"%s\", ErrorCode=%u", tmpSz.c_str(), err); LogWithArgs(LOG_WARNING, L"Unable to load plugin: \"%s\", ErrorCode=%u", tmpSz.c_str(), err);
} }
g_Plugins.push_back(info); g_Plugins.push_back(info);
} }
while(FindNextFile(hSearch, &fileData)); while (FindNextFile(hSearch, &fileData));
FindClose(hSearch); FindClose(hSearch);
} }
void RepositionControls(HWND hwndDlg) void RepositionControls(HWND hwndDlg)
@ -454,7 +454,7 @@ BOOL OnInitAboutDialog(HWND window)
HWND widget; HWND widget;
widget = GetDlgItem(window, IDC_VERSION_STRING); widget = GetDlgItem(window, IDC_VERSION_STRING);
_snwprintf_s(tmpSz, _TRUNCATE, L"%s %s%s rev %i %s", APPNAME, APPVERSION, revision_beta ? L" Beta" : L"", revision_number, APPBITS); _snwprintf_s(tmpSz, _TRUNCATE, L"%s %s%s rev %i %s", APPNAME, APPVERSION, revision_beta ? L" beta" : L"", revision_number, APPBITS);
SetWindowText(widget, tmpSz); SetWindowText(widget, tmpSz);
widget = GetDlgItem(window, IDC_BUILD_STRING); widget = GetDlgItem(window, IDC_BUILD_STRING);
@ -467,7 +467,7 @@ BOOL OnInitAboutDialog(HWND window)
widget = GetDlgItem(window, IDC_ABOUT_ENTRIES); widget = GetDlgItem(window, IDC_ABOUT_ENTRIES);
const std::map<std::wstring, CMeterWindow*>& windows = Rainmeter->GetAllMeterWindows(); const std::map<std::wstring, CMeterWindow*>& windows = Rainmeter->GetAllMeterWindows();
std::map<std::wstring, CMeterWindow*>::const_iterator iter = windows.begin(); std::map<std::wstring, CMeterWindow*>::const_iterator iter = windows.begin();
for( ; iter != windows.end(); ++iter) for ( ; iter != windows.end(); ++iter)
{ {
CMeterWindow* meterWindow = (*iter).second; CMeterWindow* meterWindow = (*iter).second;
const std::wstring& skinName = meterWindow->GetSkinName(); const std::wstring& skinName = meterWindow->GetSkinName();
@ -530,8 +530,8 @@ INT_PTR CALLBACK AboutProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM lPa
{ {
WINDOWPOS* pos = (WINDOWPOS*)lParam; WINDOWPOS* pos = (WINDOWPOS*)lParam;
pos->cx = max(280, pos->cx); pos->cx = max(420, pos->cx);
pos->cy = max(280, pos->cy); pos->cy = max(340, pos->cy);
} }
break; break;

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "resource.h" #include "resource.h"
#include "..\revision-number.h" #include "..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
@ -191,15 +191,15 @@ EXSTYLE WS_EX_APPWINDOW
CAPTION "About Rainmeter" CAPTION "About Rainmeter"
FONT 8, "MS Shell Dlg 2", 0, 0, 0x0 FONT 8, "MS Shell Dlg 2", 0, 0, 0x0
BEGIN BEGIN
CONTROL "List1",IDC_STATISTICS,"SysListView32",LVS_REPORT | LVS_SINGLESEL | LVS_NOSORTHEADER | WS_BORDER | WS_TABSTOP,118,80,211,100
CTEXT "Get the latest version at: http://www.rainmeter.net",IDC_URL_STRING,15,43,300,8
CTEXT "Rainmeter version 0.0",IDC_VERSION_STRING,15,17,300,8
GROUPBOX "About",IDC_STATIC_ABOUT,7,7,220,69 GROUPBOX "About",IDC_STATIC_ABOUT,7,7,220,69
CTEXT "Rainmeter version 0.0",IDC_VERSION_STRING,15,17,300,8
CTEXT "(Built on ??? ?? ????)",IDC_BUILD_STRING,15,30,300,8 CTEXT "(Built on ??? ?? ????)",IDC_BUILD_STRING,15,30,300,8
DEFPUSHBUTTON "OK",IDOK,91,204,50,14 CTEXT "Get the latest version at www.rainmeter.net",IDC_URL_STRING,15,43,300,8
CONTROL "Disable check for updates",IDC_DISABLE_VERSION_CHECK, CONTROL "Disable check for updates",IDC_DISABLE_VERSION_CHECK,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,67,56,104,10 "Button",BS_AUTOCHECKBOX | WS_TABSTOP,67,56,104,10
LISTBOX IDC_ABOUT_ENTRIES,7,80,130,100,LBS_HASSTRINGS | LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP LISTBOX IDC_ABOUT_ENTRIES,7,80,130,100,LBS_HASSTRINGS | LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP
CONTROL "List1",IDC_STATISTICS,"SysListView32",LVS_REPORT | LVS_SINGLESEL | LVS_NOSORTHEADER | WS_BORDER | WS_TABSTOP,118,80,211,100
DEFPUSHBUTTON "OK",IDOK,91,204,50,14
END END

View File

@ -26,19 +26,16 @@
#include "Litestep.h" #include "Litestep.h"
#include "MeterWindow.h" #include "MeterWindow.h"
#include "TrayWindow.h" #include "TrayWindow.h"
#include "../Version.h"
#define MAX_LINE_LENGTH 4096 #define MAX_LINE_LENGTH 4096
#define MAKE_VER(major, minor1, minor2) major * 1000000 + minor1 * 1000 + minor2
#define APPNAME L"Rainmeter" #define APPNAME L"Rainmeter"
#define APPVERSION L"1.4"
#ifdef _WIN64 #ifdef _WIN64
#define APPBITS L"(64-bit)" #define APPBITS L"(64-bit)"
#else #else
#define APPBITS L"(32-bit)" #define APPBITS L"(32-bit)"
#endif #endif
#define RAINMETER_VERSION MAKE_VER(1, 4, 0)
// Callbacks for Litestep // Callbacks for Litestep
void RainmeterRefresh(HWND, const char* arg); void RainmeterRefresh(HWND, const char* arg);

View File

@ -24,7 +24,7 @@
#include "AboutDialog.h" #include "AboutDialog.h"
#include "Error.h" #include "Error.h"
#include "RainmeterQuery.h" #include "RainmeterQuery.h"
#include "../revision-number.h" #include "../Version.h"
#define TRAYTIMER 3 #define TRAYTIMER 3

View File

@ -333,14 +333,14 @@
** CHANGE it to undefined as soon as your programs use only '...' to ** CHANGE it to undefined as soon as your programs use only '...' to
** access vararg parameters (instead of the old 'arg' table). ** access vararg parameters (instead of the old 'arg' table).
*/ */
#define LUA_COMPAT_VARARG #undef LUA_COMPAT_VARARG
/* /*
@@ LUA_COMPAT_MOD controls compatibility with old math.mod function. @@ LUA_COMPAT_MOD controls compatibility with old math.mod function.
** CHANGE it to undefined as soon as your programs use 'math.fmod' or ** CHANGE it to undefined as soon as your programs use 'math.fmod' or
** the new '%' operator instead of 'math.mod'. ** the new '%' operator instead of 'math.mod'.
*/ */
#define LUA_COMPAT_MOD #undef LUA_COMPAT_MOD
/* /*
@@ LUA_COMPAT_LSTR controls compatibility with old long string nesting @@ LUA_COMPAT_LSTR controls compatibility with old long string nesting
@ -355,7 +355,7 @@
** CHANGE it to undefined as soon as you rename 'string.gfind' to ** CHANGE it to undefined as soon as you rename 'string.gfind' to
** 'string.gmatch'. ** 'string.gmatch'.
*/ */
#define LUA_COMPAT_GFIND #undef LUA_COMPAT_GFIND
/* /*
@@ LUA_COMPAT_OPENLIB controls compatibility with old 'luaL_openlib' @@ LUA_COMPAT_OPENLIB controls compatibility with old 'luaL_openlib'
@ -363,7 +363,7 @@
** CHANGE it to undefined as soon as you replace to 'luaL_register' ** CHANGE it to undefined as soon as you replace to 'luaL_register'
** your uses of 'luaL_openlib' ** your uses of 'luaL_openlib'
*/ */
#define LUA_COMPAT_OPENLIB #undef LUA_COMPAT_OPENLIB

View File

@ -23,7 +23,7 @@
#include <map> #include <map>
#include "..\..\Library\Export.h" // Rainmeter's exported functions #include "..\..\Library\Export.h" // Rainmeter's exported functions
#include "../../Library/DisableThreadLibraryCalls.h" // contains DllMain entry point #include "..\..\Library\DisableThreadLibraryCalls.h" // contains DllMain entry point
//ULONGLONG GetPerfData(PCTSTR ObjectName, PCTSTR InstanceName, PCTSTR CounterName); //ULONGLONG GetPerfData(PCTSTR ObjectName, PCTSTR InstanceName, PCTSTR CounterName);
void UpdateProcesses(); void UpdateProcesses();

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "..\..\revision-number.h" #include "..\..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
#include "windows.h" #include "windows.h"
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS

View File

@ -24,7 +24,7 @@
#include "..\..\Library\Export.h" // Rainmeter's exported functions #include "..\..\Library\Export.h" // Rainmeter's exported functions
#include "../../Library/DisableThreadLibraryCalls.h" // contains DllMain entry point #include "..\..\Library\DisableThreadLibraryCalls.h" // contains DllMain entry point
extern "C" extern "C"
{ {

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "..\..\revision-number.h" #include "..\..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
#include "windows.h" #include "windows.h"
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS

View File

@ -22,7 +22,7 @@
#include <math.h> #include <math.h>
#include "..\..\Library\Export.h" // Rainmeter's exported functions #include "..\..\Library\Export.h" // Rainmeter's exported functions
//#include "../../Library/DisableThreadLibraryCalls.h" // contains DllMain entry point //#include "..\..\Library\DisableThreadLibraryCalls.h" // contains DllMain entry point
/* The exported functions */ /* The exported functions */
__declspec( dllexport ) UINT Initialize(HMODULE instance, LPCTSTR iniFile, LPCTSTR section, UINT id); __declspec( dllexport ) UINT Initialize(HMODULE instance, LPCTSTR iniFile, LPCTSTR section, UINT id);

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "..\..\revision-number.h" #include "..\..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
#include "windows.h" #include "windows.h"
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS

View File

@ -22,7 +22,7 @@
#include <map> #include <map>
#include "FolderInfo.h" #include "FolderInfo.h"
#include "../../Library/DisableThreadLibraryCalls.h" // contains DllMain entry point #include "..\..\Library\DisableThreadLibraryCalls.h" // contains DllMain entry point
#define UPDATE_TIME_MIN_MS 10000 #define UPDATE_TIME_MIN_MS 10000

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "..\..\revision-number.h" #include "..\..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
#include "windows.h" #include "windows.h"
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS

View File

@ -20,7 +20,7 @@
#include <string> #include <string>
#include "..\..\Library\Export.h" // Rainmeter's exported functions #include "..\..\Library\Export.h" // Rainmeter's exported functions
#include "../../Library/DisableThreadLibraryCalls.h" // contains DllMain entry point #include "..\..\Library\DisableThreadLibraryCalls.h" // contains DllMain entry point
/* The exported functions */ /* The exported functions */
extern "C" extern "C"

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "..\..\revision-number.h" #include "..\..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
#include "windows.h" #include "windows.h"
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS

View File

@ -23,7 +23,7 @@
#include <crtdbg.h> #include <crtdbg.h>
#include "..\..\Library\Export.h" // Rainmeter's exported functions #include "..\..\Library\Export.h" // Rainmeter's exported functions
#include "../../Library/DisableThreadLibraryCalls.h" // contains DllMain entry point #include "..\..\Library\DisableThreadLibraryCalls.h" // contains DllMain entry point
ULONGLONG GetPerfData(PCTSTR ObjectName, PCTSTR InstanceName, PCTSTR CounterName); ULONGLONG GetPerfData(PCTSTR ObjectName, PCTSTR InstanceName, PCTSTR CounterName);

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "..\..\revision-number.h" #include "..\..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
#include "windows.h" #include "windows.h"
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS

View File

@ -29,7 +29,7 @@
#include <stdlib.h> #include <stdlib.h>
#include "..\..\Library\Export.h" // Rainmeter's exported functions #include "..\..\Library\Export.h" // Rainmeter's exported functions
#include "../../Library/DisableThreadLibraryCalls.h" // contains DllMain entry point #include "..\..\Library\DisableThreadLibraryCalls.h" // contains DllMain entry point
/* The exported functions */ /* The exported functions */
extern "C" extern "C"

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "..\..\revision-number.h" #include "..\..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
#include "windows.h" #include "windows.h"
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "..\..\revision-number.h" #include "..\..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
#include "windows.h" #include "windows.h"
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS

View File

@ -26,7 +26,7 @@
#include <Powrprof.h> #include <Powrprof.h>
#include "..\..\Library\Export.h" // Rainmeter's exported functions #include "..\..\Library\Export.h" // Rainmeter's exported functions
#include "../../Library/DisableThreadLibraryCalls.h" // contains DllMain entry point #include "..\..\Library\DisableThreadLibraryCalls.h" // contains DllMain entry point
typedef struct _PROCESSOR_POWER_INFORMATION typedef struct _PROCESSOR_POWER_INFORMATION
{ {

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "..\..\revision-number.h" #include "..\..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
#include "windows.h" #include "windows.h"
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS

View File

@ -28,7 +28,7 @@
#include <shlwapi.h> #include <shlwapi.h>
#include "..\..\Library\Export.h" // Rainmeter's exported functions #include "..\..\Library\Export.h" // Rainmeter's exported functions
#include "../../Library/DisableThreadLibraryCalls.h" // contains DllMain entry point #include "..\..\Library\DisableThreadLibraryCalls.h" // contains DllMain entry point
/* The exported functions */ /* The exported functions */
extern "C" extern "C"

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "..\..\revision-number.h" #include "..\..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
#include "windows.h" #include "windows.h"
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS

View File

@ -26,7 +26,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include <time.h> #include <time.h>
#include "..\..\Library\Export.h" // Rainmeter's exported functions #include "..\..\Library\Export.h" // Rainmeter's exported functions
#include "../../Library/DisableThreadLibraryCalls.h" // contains DllMain entry point #include "..\..\Library\DisableThreadLibraryCalls.h" // contains DllMain entry point
/* The exported functions */ /* The exported functions */
extern "C" extern "C"

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "..\..\revision-number.h" #include "..\..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
#include "windows.h" #include "windows.h"
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS

View File

@ -34,7 +34,7 @@
#include <psapi.h> #include <psapi.h>
#include "..\..\Library\Export.h" // Rainmeter's exported functions #include "..\..\Library\Export.h" // Rainmeter's exported functions
#include "../../Library/DisableThreadLibraryCalls.h" // contains DllMain entry point #include "..\..\Library\DisableThreadLibraryCalls.h" // contains DllMain entry point
/* The exported functions */ /* The exported functions */
extern "C" extern "C"

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "..\..\revision-number.h" #include "..\..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
#include "windows.h" #include "windows.h"
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS

View File

@ -24,7 +24,7 @@
#include <map> #include <map>
#include "..\..\Library\Export.h" // Rainmeter's exported functions #include "..\..\Library\Export.h" // Rainmeter's exported functions
#include "../../Library/DisableThreadLibraryCalls.h" // contains DllMain entry point #include "..\..\Library\DisableThreadLibraryCalls.h" // contains DllMain entry point
/* The exported functions */ /* The exported functions */
extern "C" extern "C"

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "..\..\revision-number.h" #include "..\..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
#include "windows.h" #include "windows.h"
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS

View File

@ -26,7 +26,7 @@
#include <Iphlpapi.h> #include <Iphlpapi.h>
#include "..\..\Library\Export.h" // Rainmeter's exported functions #include "..\..\Library\Export.h" // Rainmeter's exported functions
#include "../../Library/DisableThreadLibraryCalls.h" // contains DllMain entry point #include "..\..\Library\DisableThreadLibraryCalls.h" // contains DllMain entry point
/* The exported functions */ /* The exported functions */
extern "C" extern "C"

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "..\..\revision-number.h" #include "..\..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
#include "windows.h" #include "windows.h"
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS

View File

@ -72,7 +72,7 @@
#include "../../Library/Export.h" #include "../../Library/Export.h"
#include "../../Library/DisableThreadLibraryCalls.h" // contains DllMain entry point #include "..\..\Library\DisableThreadLibraryCalls.h" // contains DllMain entry point
extern "C" extern "C"
{ {

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "..\..\revision-number.h" #include "..\..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
#include "windows.h" #include "windows.h"
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS

View File

@ -32,7 +32,7 @@
#include "..\..\Library\pcre-8.10/pcre.h" #include "..\..\Library\pcre-8.10/pcre.h"
#include "..\..\Library\Export.h" // Rainmeter's exported functions #include "..\..\Library\Export.h" // Rainmeter's exported functions
#include "../../Library/DisableThreadLibraryCalls.h" // contains DllMain entry point #include "..\..\Library\DisableThreadLibraryCalls.h" // contains DllMain entry point
/* The exported functions */ /* The exported functions */
extern "C" extern "C"

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "..\..\revision-number.h" #include "..\..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
#include "windows.h" #include "windows.h"
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS

View File

@ -26,7 +26,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#pragma comment( lib, "wlanapi.lib") #pragma comment( lib, "wlanapi.lib")
#include "..\..\Library\Export.h" // Rainmeter's exported functions #include "..\..\Library\Export.h" // Rainmeter's exported functions
#include "../../Library/DisableThreadLibraryCalls.h" // contains DllMain entry point #include "..\..\Library\DisableThreadLibraryCalls.h" // contains DllMain entry point
/* The exported functions */ /* The exported functions */
extern "C" extern "C"

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "..\..\revision-number.h" #include "..\..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
#include "windows.h" #include "windows.h"
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS

View File

@ -32,7 +32,7 @@
#include "..\..\Library\Export.h" // Rainmeter's exported functions #include "..\..\Library\Export.h" // Rainmeter's exported functions
#include "../../Library/DisableThreadLibraryCalls.h" // contains DllMain entry point #include "..\..\Library\DisableThreadLibraryCalls.h" // contains DllMain entry point
#define SAFE_RELEASE(punk) \ #define SAFE_RELEASE(punk) \
if ((punk) != NULL) { (punk)->Release(); (punk) = NULL; } if ((punk) != NULL) { (punk)->Release(); (punk) = NULL; }

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "..\..\revision-number.h" #include "..\..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
#include "windows.h" #include "windows.h"
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS

View File

@ -26,7 +26,7 @@
#include <time.h> #include <time.h>
#include "..\..\Library\Export.h" // Rainmeter's exported functions #include "..\..\Library\Export.h" // Rainmeter's exported functions
#include "../../Library/DisableThreadLibraryCalls.h" // contains DllMain entry point #include "..\..\Library\DisableThreadLibraryCalls.h" // contains DllMain entry point
/* The exported functions */ /* The exported functions */
extern "C" extern "C"

View File

@ -1,7 +1,7 @@
// Microsoft Developer Studio generated resource script. // Microsoft Developer Studio generated resource script.
// //
#include "..\..\revision-number.h" #include "..\..\Version.h"
#define APSTUDIO_READONLY_SYMBOLS #define APSTUDIO_READONLY_SYMBOLS
#include "windows.h" #include "windows.h"
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS

View File

@ -25,7 +25,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include <map> #include <map>
#include <time.h> #include <time.h>
#include "../../Library/DisableThreadLibraryCalls.h" // contains DllMain entry point #include "..\..\Library\DisableThreadLibraryCalls.h" // contains DllMain entry point
const int VOLUME_STEP = 5; const int VOLUME_STEP = 5;

13
Version.h Normal file
View File

@ -0,0 +1,13 @@
#pragma once
#define MAKE_VER(major, minor1, minor2) major * 1000000 + minor1 * 1000 + minor2
#define FILEVER 1,4,0,733
#define PRODUCTVER 1,4,0,733
#define STRFILEVER "1.4.0.733"
#define STRPRODUCTVER "1.4.0.733"
#define APPVERSION L"1.4.0"
#define RAINMETER_VERSION MAKE_VER(1, 4, 0)
const int revision_number = 733;
const bool revision_beta = true;

View File

@ -1,8 +0,0 @@
#pragma once
#define FILEVER 1,4,0,728
#define PRODUCTVER 1,4,0,728
#define STRFILEVER "1.4.0.728"
#define STRPRODUCTVER "1.4.0.728"
const int revision_number = 728;
const bool revision_beta = true;