mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
- Rainstaller now preserves statistics when applying theme
- Build.bat now checks "Program Files (x86)" if files don't exist in "Program Files"
This commit is contained in:
@ -22,8 +22,6 @@
|
||||
#include <windows.h>
|
||||
#include <vector>
|
||||
|
||||
typedef BOOL (WINAPI *FPSETDLLDIRECTORYW)(LPCWSTR lpPathName);
|
||||
|
||||
enum OSPLATFORM
|
||||
{
|
||||
OSPLATFORM_UNKNOWN = 0,
|
||||
|
@ -835,12 +835,12 @@ LRESULT CALLBACK CTrayWindow::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARA
|
||||
case LM_GETREVID:
|
||||
if (lParam != NULL)
|
||||
{
|
||||
char* Buffer=(char*)lParam;
|
||||
if (wParam==0)
|
||||
char* Buffer = (char*)lParam;
|
||||
if (wParam == 0)
|
||||
{
|
||||
sprintf(Buffer, "Rainmeter.dll: %s", APPVERSION);
|
||||
}
|
||||
else if (wParam==1)
|
||||
else if (wParam == 1)
|
||||
{
|
||||
sprintf(Buffer, "Rainmeter.dll: %s %s, Rainy", APPVERSION, __DATE__);
|
||||
}
|
||||
|
Reference in New Issue
Block a user