Click here to Skip to main content
15,886,199 members
Articles / Desktop Programming / Win32

Dynamic Libraries with Delayed Function Loading

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
27 Oct 2011Public Domain4 min read 24.6K   306   5  
This article explains how to create a dynamic library that loads exported functions the first time they are used, opposed to loading them when the library is loaded.
#pragma once

#ifdef __cplusplus
extern "C" {
#endif

int add(int /*a*/, int /*b*/);
int subtract(int /*a*/, int /*b*/);
int multiply(int /*a*/, int /*b*/);
int divide(int /*a*/, int /*b*/);

typedef int (*LP_payload_func)(int /*a*/, int /*b*/);

#ifdef __cplusplus
} // extern "C"
#endif

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under A Public Domain dedication


Written By
Founder
Germany Germany
Software developer since April 2000.
Active in various areas, most notably C/C++ development with Windows platform, web development, scripting.
Coder by heart.
Interested in higher level software development techniques, abstractions, modeling, software factories.
Nuts and bolts guy.

Comments and Discussions