Welcome to mirror list, hosted at ThFree Co, Russian Federation.

loaddll.c « dlltest « samples « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ec69c9a7e9db93c77b4638bf8c4174915573fe68 (plain)
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
/*
 * This version attempts to load dll.dll dynamically, get the address of the
 * Add function, and then call it.
 */

#include <stdio.h>
#include <windows.h>

int (*Add)(int x, int y);

int main()
{
	HINSTANCE	hDll;
	int i, j, k;

	hDll = LoadLibrary ("dll.dll");
	if (!hDll)
	{
		printf ("Error %d loading dll.\n", GetLastError());
		exit (-1);
	}

	if (!(Add = GetProcAddress (hDll, "Add")))
	{
		printf ("Error %d getting Add function.\n", GetLastError());
		exit (-1);
	}

	i = 10;
	j = 13;

	k = Add(i, j);

	printf ("i %d, j %d, k %d\n", i, j, k);

	FreeLibrary (hDll);
    
	return 0;
}