Rust/Win32[common-controls-v6] - Win10 21h2 TaskDialogIndirect entry point not found

Anthony Bobenrieth 1 Reputation point
2022-09-04T12:03:32.597+00:00

(I am pretty new to both win32 lib and Rust lang, so the problem may clearly come from me.)

Tried to create a TaskDialogIndirect with windows.rs but get a -1073741511 (0xc0000139 : STATUS_ENTRYPOINT_NOT_FOUND) : exit code with a message saying "TaskDialogIndirect can't be found in the dynamic library my-app.exe".

This probleme used to appear with OS below vista but the two computer i tested run on Windows 10 21h2.

Windows API - Win32
Windows API - Win32
A core set of Windows application programming interfaces (APIs) for desktop and server applications. Previously known as Win32 API.
2,428 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Anthony Bobenrieth 1 Reputation point
    2022-09-04T12:47:06.69+00:00

    As stated by Castorix31, setting up the manifest as the one from https://stackoverflow.com/a/48499761/954853 solved the problem.

    Thank you Castorix31!

    (... Now i have to figure out what a manifest is.)