mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
- Updated installer graphics
- Fixed that using '!Execute [""]' opens program folder (results in no action now)
This commit is contained in:
parent
34d88e42e2
commit
c72648d956
@ -378,25 +378,32 @@ HINSTANCE ExecuteCommand(HWND Owner, LPCTSTR szCommand, int nShowCmd, LPCTSTR sz
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DWORD type = GetFileAttributes(command.c_str());
|
if (!command.empty())
|
||||||
if (type & FILE_ATTRIBUTE_DIRECTORY && type != 0xFFFFFFFF)
|
|
||||||
{
|
{
|
||||||
HINSTANCE instance = ShellExecute(Owner, szVerb, command.c_str(), NULL, NULL, nShowCmd ? nShowCmd : SW_SHOWNORMAL);
|
DWORD type = GetFileAttributes(command.c_str());
|
||||||
return instance;
|
if (type & FILE_ATTRIBUTE_DIRECTORY && type != 0xFFFFFFFF)
|
||||||
|
{
|
||||||
|
HINSTANCE instance = ShellExecute(Owner, szVerb, command.c_str(), NULL, NULL, nShowCmd ? nShowCmd : SW_SHOWNORMAL);
|
||||||
|
return instance;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::wstring dir = CRainmeter::ExtractPath(command);
|
||||||
|
|
||||||
|
SHELLEXECUTEINFO si = {sizeof(SHELLEXECUTEINFO)};
|
||||||
|
si.hwnd = Owner;
|
||||||
|
si.lpVerb = szVerb;
|
||||||
|
si.lpFile = command.c_str();
|
||||||
|
si.lpParameters = args.c_str();
|
||||||
|
si.lpDirectory = dir.c_str();
|
||||||
|
si.nShow = nShowCmd ? nShowCmd : SW_SHOWNORMAL;
|
||||||
|
si.fMask = SEE_MASK_DOENVSUBST | SEE_MASK_FLAG_NO_UI;
|
||||||
|
ShellExecuteEx(&si);
|
||||||
|
return si.hInstApp;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return (HINSTANCE)SE_ERR_FNF;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::wstring dir = CRainmeter::ExtractPath(command);
|
|
||||||
|
|
||||||
SHELLEXECUTEINFO si = {sizeof(SHELLEXECUTEINFO)};
|
|
||||||
si.hwnd = Owner;
|
|
||||||
si.lpVerb = szVerb;
|
|
||||||
si.lpFile = command.c_str();
|
|
||||||
si.lpParameters = args.c_str();
|
|
||||||
si.lpDirectory = dir.c_str();
|
|
||||||
si.nShow = nShowCmd ? nShowCmd : SW_SHOWNORMAL;
|
|
||||||
si.fMask = SEE_MASK_DOENVSUBST | SEE_MASK_FLAG_NO_UI;
|
|
||||||
ShellExecuteEx(&si);
|
|
||||||
return si.hInstApp;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//void TransparentBltLS(HDC hdcDst, int nXDest, int nYDest, int nWidth, int nHeight, HDC hdcSrc, int nXSrc, int nYSrc, COLORREF colorTransparent)
|
//void TransparentBltLS(HDC hdcDst, int nXDest, int nYDest, int nWidth, int nHeight, HDC hdcSrc, int nXSrc, int nYSrc, COLORREF colorTransparent)
|
||||||
|
Loading…
Reference in New Issue
Block a user