1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
|
/* Copyright (c) MediaArea.net SARL. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license that can
* be found in the License.html file in the root of the source tree.
*/
// dllmain.cpp : Defines the entry point for the DLL application.
// IExplorerCommand File Explorer shell extension for context menu entry
#include "pch.h"
#ifdef MEDIAINFO_QT
#define SHELLEXT_GUID "dea3006d-451d-4f0f-a2b2-c3250cb255b4"
#else
#define SHELLEXT_GUID "20669675-b281-4c4f-94fb-cb6fd3995545"
#endif // MEDIAINFO_QT
constexpr const wchar_t* menu_entry_title = L"MediaInfo";
constexpr const wchar_t* exe_filename = L"MediaInfo.exe";
BOOL APIENTRY DllMain(_In_ HMODULE hModule, _In_ DWORD ul_reason_for_call, _In_opt_ LPVOID lpReserved) {
UNREFERENCED_PARAMETER(hModule);
UNREFERENCED_PARAMETER(lpReserved);
switch (ul_reason_for_call) {
case DLL_PROCESS_ATTACH:
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}
namespace {
// Extracted from
// https://source.chromium.org/chromium/chromium/src/+/main:base/command_line.cc;l=109-159
std::wstring QuoteForCommandLineArg(_In_ const std::wstring& arg) {
// We follow the quoting rules of CommandLineToArgvW.
// http://msdn.microsoft.com/en-us/library/17w5ykft.aspx
const std::wstring quotable_chars(L" \\\"");
if (arg.find_first_of(quotable_chars) == std::wstring::npos) {
// No quoting necessary.
return arg;
}
std::wstring out;
out.push_back('"');
for (size_t i = 0; i < arg.size(); ++i) {
if (arg[i] == '\\') {
// Find the extent of this run of backslashes.
const size_t start = i;
size_t end = start + 1;
for (; end < arg.size() && arg[end] == '\\'; ++end) {}
size_t backslash_count = end - start;
// Backslashes are escapes only if the run is followed by a double quote.
// Since we also will end the string with a double quote, we escape for
// either a double quote or the end of the string.
if (end == arg.size() || arg[end] == '"') {
// To quote, we need to output 2x as many backslashes.
backslash_count *= 2;
}
for (size_t j = 0; j < backslash_count; ++j)
out.push_back('\\');
// Advance i to one before the end to balance i++ in loop.
i = end - 1;
}
else if (arg[i] == '"') {
out.push_back('\\');
out.push_back('"');
}
else {
out.push_back(arg[i]);
}
}
out.push_back('"');
return out;
}
// Extracted from
// https://learn.microsoft.com/en-us/archive/msdn-magazine/2017/may/c-use-modern-c-to-access-the-windows-registry#reading-a-dword-value-from-the-registry
DWORD RegGetDword(_In_ HKEY hKey, _In_ const std::wstring& subKey, _In_ const std::wstring& value) {
DWORD data{};
DWORD dataSize = sizeof(data);
LONG retCode = RegGetValue(
hKey,
subKey.c_str(),
value.c_str(),
RRF_RT_REG_DWORD,
nullptr,
&data,
&dataSize
);
if (retCode != ERROR_SUCCESS)
throw std::runtime_error("Cannot read DWORD from registry.");
return data;
}
// Adapted from
// https://learn.microsoft.com/en-us/archive/msdn-magazine/2017/may/c-use-modern-c-to-access-the-windows-registry#reading-a-string-value-from-the-registry
bool RegGetBool(_In_ HKEY hKey, _In_ const std::wstring& subKey, _In_ const std::wstring& value) {
DWORD dataSize{};
LONG retCode = RegGetValue(
hKey,
subKey.c_str(),
value.c_str(),
RRF_RT_REG_SZ,
nullptr,
nullptr,
&dataSize
);
if (retCode != ERROR_SUCCESS)
throw std::runtime_error("Cannot read string from registry.");
std::wstring data;
data.resize(dataSize / sizeof(wchar_t));
retCode = ::RegGetValue(
hKey,
subKey.c_str(),
value.c_str(),
RRF_RT_REG_SZ,
nullptr,
data.data(),
&dataSize
);
if (retCode != ERROR_SUCCESS)
throw std::runtime_error("Cannot read string from registry.");
DWORD stringLengthInWchars = dataSize / sizeof(wchar_t);
--stringLengthInWchars; // Exclude the NUL written by the Win32 API
data.resize(stringLengthInWchars);
if (data == L"true")
return true;
if (data == L"false")
return false;
throw std::runtime_error("Not a boolean.");
}
// ResolveIt - Uses the Shell's IShellLink and IPersistFile interfaces
// to retrieve the path and description from an existing shortcut.
// Adapted from: https://learn.microsoft.com/en-us/windows/win32/shell/links#resolving-a-shortcut
//
// Returns the result of calling the member functions of the interfaces.
//
// Parameters:
// hwnd - A handle to the parent window. The Shell uses this window to
// display a dialog box if it needs to prompt the user for more
// information while resolving the link.
// lpszLinkFile - Address of a buffer that contains the path of the link,
// including the file name.
// lpszPath - Address of a buffer that receives the path of the link
// target, including the file name.
// iPathBufferSize - Size of lpszPath in bytes.
_Check_return_
HRESULT ResolveIt(_In_opt_ HWND hwnd, _In_ LPCWSTR lpszLinkFile, _Out_ LPWSTR lpszPath, _In_ size_t iPathBufferSize) {
HRESULT hres{};
winrt::com_ptr<IShellLink> psl;
*lpszPath = 0; // Assume failure
// Get a pointer to the IShellLink interface. It is assumed that CoInitialize
// has already been called.
hres = CoCreateInstance(CLSID_ShellLink, nullptr, CLSCTX_INPROC_SERVER, IID_IShellLink, reinterpret_cast<LPVOID*>(&psl));
if (SUCCEEDED(hres)) {
winrt::com_ptr<IPersistFile> ppf;
// Get a pointer to the IPersistFile interface.
hres = psl->QueryInterface(IID_IPersistFile, reinterpret_cast<void**>(&ppf));
if (SUCCEEDED(hres)) {
// Load the shortcut.
hres = ppf->Load(lpszLinkFile, STGM_READ);
if (SUCCEEDED(hres)) {
// Resolve the link.
hres = psl->Resolve(hwnd, 0);
if (SUCCEEDED(hres)) {
WCHAR szGotPath[MAX_PATH];
// Get the path to the link target.
hres = psl->GetPath(szGotPath, ARRAYSIZE(szGotPath), nullptr, SLGP_RAWPATH);
if (SUCCEEDED(hres)) {
hres = StringCbCopy(lpszPath, iPathBufferSize, szGotPath);
}
}
}
}
}
return hres;
}
// Adapted from code generated with Google Gemini 2.0 Flash
_Check_return_ _Success_return_
bool ExtractUrlFromShortcut(_In_ const std::filesystem::path& filePath, _Out_ std::string& url) {
// Check if file exists and is readable
if (!std::filesystem::exists(filePath) || !std::filesystem::is_regular_file(filePath))
return false;
// Open the file in binary mode
std::ifstream file(filePath, std::ios::binary);
// Check if file opened successfully
if (!file.is_open())
return false;
// Read the entire file content
std::string content;
file.seekg(0, std::ios::end);
if (file.tellg() > 4096) { // Leave if file is too large
file.close();
return false;
}
content.resize(static_cast<size_t>(file.tellg()));
file.seekg(0, std::ios::beg);
file.read(content.data(), content.size());
file.close();
// Check if the content starts with the expected header for a .url file
if (content.size() < 20 || (content.substr(0, 20) != "[InternetShortcut]\r\n"))
return false;
// Use regular expression to extract the URL
std::regex urlRegex(R"(URL=(.*?)\r?\n)");
std::smatch match;
if (std::regex_search(content, match, urlRegex)) {
url = match[1].str();
return true;
}
return false;
}
// Adapted from code generated with Google Gemini 2.0 Flash
std::string ExtractFileExtensionFromUrl(_In_ const std::string& url) {
// Find the last '/' before the '?' or end of string
size_t lastSlashPos{ url.find_last_of('/') };
size_t queryPos{};
if (lastSlashPos == std::string::npos)
queryPos = url.find('?'); // URLs without slashes
else
queryPos = url.find('?', lastSlashPos + 1);
std::string filename;
if (queryPos == std::string::npos)
filename = url.substr(lastSlashPos + 1); // URLs without query strings
else
filename = url.substr(lastSlashPos + 1, queryPos - lastSlashPos - 1);
// Extract the extension using std::filesystem
std::filesystem::path filePath{ filename };
return filePath.extension().string();
}
// Function to check for supported file extensions
bool IsSupportedFileExtension(_In_ const std::string& extension) {
const std::vector<std::string> supported_extensions{
".264",
".3g2",
".3ga",
".3gp",
".3gpa",
".3gpp",
".aa3",
".aac",
".aacp",
".ac3",
".act",
".adts",
".aif",
".aifc",
".aiff",
".amr",
".ape",
".asf",
".at3",
".au",
".aud",
".aue",
".avi",
".avif",
".avs",
".avs3",
".bdmv",
".bmp",
".bms",
".braw",
".caf",
".clpi",
".dat",
".dde",
".dff",
".divx",
".dpg",
".dsd",
".dsf",
".dts",
".dtshd",
".dv",
".dvr",
".dvr-ms",
".eac3",
".evo",
".f4a",
".f4b",
".f4v",
".fla",
".flac",
".flc",
".fli",
".flv",
".gif",
".gis",
".gvi",
".h264",
".h3d",
".hdmov",
".heic",
".heif",
".iamf",
".ico",
".ifo",
".ism",
".isma",
".ismv",
".j2k",
".jp2",
".jpeg",
".jpg",
".jps",
".jxl",
".m1s",
".m1t",
".m1v",
".m2p",
".m2s",
".m2t",
".m2ts",
".m2v",
".m4a",
".m4b",
".m4v",
".mac",
".mk3d",
".mka",
".mks",
".mkv",
".mlp",
".mod",
".mov",
".mp+",
".mp2",
".mp3",
".mp4",
".mpc",
".mpd",
".mpe",
".mpeg",
".mpg",
".mpgv",
".mpgx",
".mpls",
".mpm",
".mpo",
".mpv",
".mts",
".mxf",
".oga",
".ogg",
".ogm",
".ogv",
".ogx",
".oma",
".opus",
".png",
".pns",
".qcp",
".qt",
".ra",
".rm",
".rmvb",
".shn",
".smv",
".spdif",
".spx",
".stl",
".swf",
".tak",
".thd",
".thd+ac3",
".tif",
".tiff",
".tmf",
".tp",
".trec",
".trp",
".ts",
".tta",
".ty",
".vob",
".vqf",
".vro",
".w64",
".wav",
".webm",
".webp",
".wma",
".wmv",
".wtv",
".wv",
".wvc",
".y4m"
};
std::string extension_lower{ extension };
std::transform(extension_lower.begin(), extension_lower.end(), extension_lower.begin(), [](char c) { return static_cast<char>(std::tolower(static_cast<unsigned char>(c))); });
return (std::find(supported_extensions.begin(), supported_extensions.end(), extension_lower) != supported_extensions.end());
}
}
struct ExplorerCommandHandler : public winrt::implements<ExplorerCommandHandler, IExplorerCommand> {
public:
// IExplorerCommand implementation:
IFACEMETHODIMP GetTitle(_In_opt_ IShellItemArray* items, _Outptr_ PWSTR* name) {
// Provide name for display in File Explorer context menu entry
UNREFERENCED_PARAMETER(items);
return SHStrDupW(menu_entry_title, name);
}
IFACEMETHODIMP GetIcon(_In_opt_ IShellItemArray* items, _Outptr_ PWSTR* icon) {
// Provide icon for display in File Explorer context menu entry
// Get path to application exe and use it as source for icon
UNREFERENCED_PARAMETER(items);
std::filesystem::path module_path{ wil::GetModuleFileNameW<std::wstring>(wil::GetModuleInstanceHandle()) };
module_path = module_path.remove_filename();
module_path /= exe_filename;
return SHStrDupW(module_path.c_str(), icon);
}
IFACEMETHODIMP GetToolTip(_In_opt_ IShellItemArray* items, _Outptr_ PWSTR* infoTip) {
UNREFERENCED_PARAMETER(items);
*infoTip = nullptr;
return E_NOTIMPL;
}
IFACEMETHODIMP GetCanonicalName(_Out_ GUID* guidCommandName) {
*guidCommandName = GUID_NULL;
return S_OK;
}
IFACEMETHODIMP GetState(_In_opt_ IShellItemArray* items, _In_ BOOL okToBeSlow, _Out_ EXPCMDSTATE* cmdState) {
// Provide state of File Explorer context menu entry
// Hide it if registry setting indicates that it should be disabled, else it is enabled
UNREFERENCED_PARAMETER(okToBeSlow);
// Check if it is a folder or supported file extension
bool is_folder{ false };
bool is_supported_extension{ false };
if (items) {
DWORD count{};
RETURN_IF_FAILED(items->GetCount(&count));
if (count > 0) {
winrt::com_ptr<IShellItem> item;
if (SUCCEEDED(items->GetItemAt(0, item.put()))) {
SFGAOF attribute{};
if (SUCCEEDED(item->GetAttributes(SFGAO_FOLDER | SFGAO_STREAM, &attribute))) {
if ((attribute & SFGAO_FOLDER) && !(attribute & SFGAO_STREAM))
is_folder = true;
else {
wil::unique_cotaskmem_string path;
if (SUCCEEDED(item->GetDisplayName(SIGDN_FILESYSPATH, &path))) {
std::filesystem::path filepath{ path.get() };
// resolve shortcuts
if (filepath.extension().string() == ".url") {
std::string url;
if (ExtractUrlFromShortcut(filepath, url))
is_supported_extension = IsSupportedFileExtension(ExtractFileExtensionFromUrl(url));
}
else {
if (filepath.extension().string() == ".lnk") {
WCHAR target_path[MAX_PATH];
if (SUCCEEDED(ResolveIt(nullptr, filepath.wstring().c_str(), target_path, sizeof(target_path))))
filepath = target_path;
}
if (std::filesystem::is_directory(filepath))
is_folder = true;
else
is_supported_extension = IsSupportedFileExtension(filepath.extension().string());
}
}
}
}
}
}
}
// Check for files
if (!is_supported_extension && !is_folder) {
*cmdState = ECS_HIDDEN;
return S_OK;
}
try {
#ifdef MEDIAINFO_QT
if (!RegGetBool(HKEY_CURRENT_USER, L"Software\\MediaArea.net\\MediaInfo", L"shellExtension"))
#else
if (!RegGetDword(HKEY_CURRENT_USER, L"Software\\MediaArea\\MediaInfo", L"ShellExtension") && !is_folder)
#endif // MEDIAINFO_QT
{
*cmdState = ECS_HIDDEN;
return S_OK;
}
}
catch (...) {
// Error reading reg, default enabled
}
#ifndef MEDIAINFO_QT
// Check for folders
try {
if (!RegGetDword(HKEY_CURRENT_USER, L"Software\\MediaArea\\MediaInfo", L"ShellExtension_Folder") && is_folder) {
*cmdState = ECS_HIDDEN;
return S_OK;
}
}
catch (...) {
// Error reading reg, default enabled
}
#endif // MEDIAINFO_QT
// Default enabled if not disabled
*cmdState = ECS_ENABLED;
return S_OK;
}
IFACEMETHODIMP GetFlags(_Out_ EXPCMDFLAGS* flags) {
*flags = ECF_DEFAULT;
return S_OK;
}
IFACEMETHODIMP EnumSubCommands(_Outptr_ IEnumExplorerCommand** enumCommands) {
*enumCommands = nullptr;
return E_NOTIMPL;
}
IFACEMETHODIMP Invoke(_In_opt_ IShellItemArray* items, _In_opt_ IBindCtx* bindCtx) {
// Process items passed by File Explorer when context menu entry is invoked
UNREFERENCED_PARAMETER(bindCtx);
// Return if no items
if (!items)
return S_OK;
// Get count
DWORD count{};
RETURN_IF_FAILED(items->GetCount(&count));
// Get path to application exe
std::filesystem::path module_path{ wil::GetModuleFileNameW<std::wstring>(wil::GetModuleInstanceHandle()) };
module_path = module_path.remove_filename();
module_path /= exe_filename;
// Option for separate instance
bool separate_instance{ false };
try {
#ifdef MEDIAINFO_QT
if (RegGetBool(HKEY_CURRENT_USER, L"Software\\MediaArea.net\\MediaInfo", L"shellExtension_separateInstance"))
#else
if (RegGetDword(HKEY_CURRENT_USER, L"Software\\MediaArea\\MediaInfo", L"ShellExtension_SeparateInstance"))
#endif // MEDIAINFO_QT
{
separate_instance = true;
}
}
catch (...) {
// Error reading reg, default same instance
}
if (separate_instance) {
// Invoke application, one instance per item
for (DWORD i = 0; i < count; ++i) {
winrt::com_ptr<IShellItem> item;
auto result = items->GetItemAt(i, item.put());
if (SUCCEEDED(result)) {
wil::unique_cotaskmem_string path;
result = item->GetDisplayName(SIGDN_FILESYSPATH, &path);
if (SUCCEEDED(result)) {
std::filesystem::path filepath{ path.get() };
// Resolve shortcuts
if (filepath.extension().string() == ".url") {
std::string url;
if (ExtractUrlFromShortcut(filepath, url))
filepath = url;
}
if (filepath.extension().string() == ".lnk") {
WCHAR target_path[MAX_PATH];
if (SUCCEEDED(ResolveIt(nullptr, filepath.wstring().c_str(), target_path, sizeof(target_path))))
filepath = target_path;
}
auto command{ wil::str_printf<std::wstring>(LR"-("%s" %s)-", module_path.c_str(), QuoteForCommandLineArg(filepath.wstring()).c_str()) };
wil::unique_process_information process_info;
STARTUPINFOW startup_info = { sizeof(startup_info) };
RETURN_IF_WIN32_BOOL_FALSE(CreateProcessW(
nullptr,
command.data(),
nullptr /* lpProcessAttributes */,
nullptr /* lpThreadAttributes */,
false /* bInheritHandles */,
CREATE_NO_WINDOW,
nullptr,
nullptr,
&startup_info,
&process_info));
}
}
}
return S_OK;
}
// Prepare cmd line string to invoke application ("path\to\application.exe" "path\to\firstitem" "path\to\nextitem" ...)
auto command{ wil::str_printf<std::wstring>(LR"-("%s")-", module_path.c_str()) }; // Path to application.exe
// Add multiple selected files/folders to cmd line as parameters
for (DWORD i = 0; i < count; ++i) {
winrt::com_ptr<IShellItem> item;
auto result = items->GetItemAt(i, item.put());
if (SUCCEEDED(result)) {
wil::unique_cotaskmem_string path;
result = item->GetDisplayName(SIGDN_FILESYSPATH, &path);
if (SUCCEEDED(result)) {
std::filesystem::path filepath{ path.get() };
// Resolve shortcuts
if (filepath.extension().string() == ".url") {
std::string url;
if (ExtractUrlFromShortcut(filepath, url))
filepath = url;
}
if (filepath.extension().string() == ".lnk") {
WCHAR target_path[MAX_PATH];
if (SUCCEEDED(ResolveIt(nullptr, filepath.wstring().c_str(), target_path, sizeof(target_path))))
filepath = target_path;
}
// Append the item path to the existing command, adding quotes and escapes as needed
command = wil::str_printf<std::wstring>(LR"-(%s %s)-", command.c_str(), QuoteForCommandLineArg(filepath.wstring()).c_str());
}
}
}
// Invoke application using CreateProcess with the command string prepared above
wil::unique_process_information process_info;
STARTUPINFOW startup_info = { sizeof(startup_info) };
RETURN_IF_WIN32_BOOL_FALSE(CreateProcessW(
nullptr,
command.data(),
nullptr /* lpProcessAttributes */,
nullptr /* lpThreadAttributes */,
false /* bInheritHandles */,
CREATE_NO_WINDOW,
nullptr,
nullptr,
&startup_info,
&process_info));
return S_OK;
}
};
struct DECLSPEC_UUID(SHELLEXT_GUID) ClassFactory : public winrt::implements<ClassFactory, IClassFactory> {
public:
IFACEMETHODIMP CreateInstance(_In_opt_ IUnknown * pUnkOuter, _In_ REFIID riid, _COM_Outptr_ void** ppvObject) noexcept override {
UNREFERENCED_PARAMETER(pUnkOuter);
try {
return winrt::make<ExplorerCommandHandler>()->QueryInterface(riid, ppvObject);
}
catch (...) {
return winrt::to_hresult();
}
}
IFACEMETHODIMP LockServer(_In_ BOOL fLock) noexcept override {
if (fLock)
++winrt::get_module_lock();
else
--winrt::get_module_lock();
return S_OK;
}
};
_Check_return_
STDAPI DllGetClassObject(_In_ REFCLSID rclsid, _In_ REFIID riid, _Outptr_ LPVOID* ppv) {
if (ppv == nullptr)
return E_POINTER;
*ppv = nullptr;
if (riid != IID_IClassFactory && riid != IID_IUnknown)
return E_NOINTERFACE;
if (rclsid != __uuidof(ClassFactory))
return E_INVALIDARG;
try {
return winrt::make<ClassFactory>()->QueryInterface(riid, ppv);
}
catch (...) {
return winrt::to_hresult();
}
}
__control_entrypoint(DllExport)
STDAPI DllCanUnloadNow(void) {
if (winrt::get_module_lock())
return S_FALSE;
winrt::clear_factory_cache();
return S_OK;
}
|