Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

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

    3rd Party Software
    1
    1
    1034
    Loading More Posts
    • 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
      XGuy last edited by

      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 Reply Quote 0
      • First post
        Last post