Giter VIP home page Giter VIP logo

dll_loader's Introduction

dll_loader

A single-header library to take away the pain of loading a dynamically linked library. Crossplatform!
Disclaimer: I don't consider it production-ready, it is not tested very heavily and it lacks some features.

Installation

Just download the headerfile, add it to your project directory and include it. That's all!

Usage

Simple example usage to get started:

#include "dll_loader.hpp"
#include <iostream>

int main() {
  // Load the library with the name 'testdll'
  auto lib = dll_loader::dynamic_library("testdll");

  // Get a function from the library named 'get_one', 
  // which takes no parameters and returns an integer.
  auto get_one = lib.get_function<int()>("get_one");

  // Get a function from the library named 'get_a_string',
  // Which takes not parameters and returns a const char*.
  auto get_a_string = lib.get_function<const char*()>("get_a_string");

  // We can just call these functions now:
  std::cout << get_one() << std::endl;

  std::cin.get();
}

Support

Please open an issue for support.

Contributing

Create a branch, add commits, and open a pull request.

dll_loader's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.