Desktop Functions: Smart Device Functions:
|
Search Results for "ShellExecuteExW" in [All]shell321: ShellExecute
static extern TODO ShellExecuteExW(TODO);
Declare Function ShellExecuteExW Lib "shell32.dll" (TODO) As TODO Someone previously thought "the truth is in the headers - in this case ShellAPI.h, which declares them all as LPCSTR i.e. they're always ANSI not Unicode.". On the contrary, shellapi.h defines two versions of the structure, SHELLEXECUTEINFOA and SHELLEXECUTEINFOW, and ShellExecuteExW expects a SHELLEXECUTEINFOW structure... so although "LPCTSTR" never appears in the definition the effect is the same. |