Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. 3rd Party Software
  4. [SOLVED] Loading qca-pkcs112.dll plugin into project
QtWS25 Last Chance

[SOLVED] Loading qca-pkcs112.dll plugin into project

Scheduled Pinned Locked Moved 3rd Party Software
1 Posts 1 Posters 1.1k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • X Offline
    X Offline
    XGuy
    wrote on last edited by
    #1

    I want to load qca-pkcs112.dll plugin to my project, this dll is located in my project's root folder under crypto folder however my code fails to load it :-(

    QPluginLoader loader("~\crypto\qca-pkcs112.dll");
    loader.load();
    if(!loader.isLoaded())
    {
    msg2.setText(loader.errorString());
    msg2.setStandardButtons(QMessageBox::Ok);
    msg2.exec();
    }
    else
    {
    QObject *plugin = loader.instance();
    }

    loader.errorString returns "The shared library was not found."

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved