-
Notifications
You must be signed in to change notification settings - Fork 0
/
dll.cpp
61 lines (52 loc) · 890 Bytes
/
dll.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//DLL
//simplificado.cpp
#include <iostream>
using namespace std;
#include "cabecera.h"
namespace ambiente
{
void MiClase::metodo1()
{
cout << "hello. I'm a DLL" << endl;
}
void MiClase::metodo2(int a, float b)
{
cout << "hello. I'm a DLL metodo 2 =" << a + b << endl;
}
};
//cabecera.h
#pragma once
namespace ambiente
{
class MiClase
{
public:
// __declspec(dllexport) - enables you tu export
// functions, data, objects from a dll
static __declspec(dllexport) void metodo1();
static __declspec(dllexport) void metodo2(int, float);
~MiClase();
private:
};
/*
MiClase::MiClase()
{
}
MiClase::~MiClase()
{
}
*/
}
//Excecutavel
//testador.cpp
#include <iostream>
#include "cabecera.h"
using namespace std;
using namespace ambiente;
int main()
{
//metodo1(); //don't work
MiClase::metodo1();
MiClase::metodo2(2, 3.5);
system("pause");
}