[SHELL32][CMD][SHLWAPI] Use the openas verb when invoking unknown file types (#7981)

CORE-20184
This commit is contained in:
Whindmar Saksit 2025-05-30 18:46:24 +02:00 committed by GitHub
parent 6dd8e04438
commit d663eb4466
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 249 additions and 170 deletions

View file

@ -141,6 +141,13 @@ VOID error_out_of_memory(VOID)
nErrorLevel = 1;
}
VOID error_cant_exec_program(VOID)
{
/* TODO: Windows uses the custom string "The system cannot execute the specified program" here */
ErrorMessage(ERROR_NO_ASSOCIATION, NULL);
nErrorLevel = 1;
}
VOID error_invalid_parameter_format(PCWSTR s)
{