Skip to content

Instantly share code, notes, and snippets.

View Vova43's full-sized avatar
⚙️
I feel like a god in the development environment

Vova43

⚙️
I feel like a god in the development environment
View GitHub Profile
Header file
extern “C” __declspec(dllexport) int MultiplyByTen(int numberToMultiply);
Source code file
#include “DynamicDLLToCall.h”
int MultiplyByTen(int numberToMultiply)
{