Tools, FAQ, Tutorials:
"MathLibrary.h" - Header File of DLL Library
How to create a C++ Header File for DLL (Dynamic Link Library)?
✍: FYIcenter.com
Using a Dynamic Link Library (DLL) is a great way to reuse code.
Rather than re-implementing the same routines in every program that you
create, you write them one time and then reference them from apps that
require the functionality. By putting code in the DLL, you save space in
every app that references it, and you can update the DLL without recompiling
all of the apps that use it.
The first step to build a static library is to create a header (.h file) to represent the API of the library as shown in this tutorial:
1. Create the header file, MathLibrary.h, with a text editor:
// MathLibrary.h - Contains declaration of Function class
#pragma once
#ifdef MATHLIBRARY_EXPORTS
#define MATHLIBRARY_API __declspec(dllexport)
#else
#define MATHLIBRARY_API __declspec(dllimport)
#endif
namespace MathLibrary
{
// This class is exported from the MathLibrary.dll
class Functions
{
public:
// Returns a + b
static MATHLIBRARY_API double Add(double a, double b);
// Returns a * b
static MATHLIBRARY_API double Multiply(double a, double b);
// Returns a + (a * b)
static MATHLIBRARY_API double AddMultiply(double a, double b);
};
}
2. Save the header file with your library source file. It is needed when you compile your library source code.
3. Send header file to anyone who wants to use your library. They need it to compile their application source code.
⇒ "MathLibrary.cpp" - Build DLL Library
⇐ "MyExecRefsLib.cpp" - Reference Static Library
2023-09-16, ∼2704🔥, 0💬
Popular Posts:
How to add request query string Parameters to my Azure API operation 2017 version to make it more us...
How to use the JSON to XML Conversion Tool at utilities-online.info? If you want to try the JSON to ...
How To Read a File in Binary Mode in PHP? If you have a file that stores binary data, like an execut...
What validation keywords I can use in JSON Schema to specifically validate JSON Array values? The cu...
How To Loop through an Array without Using "foreach" in PHP? PHP offers the following functions to a...