aboutsummaryrefslogtreecommitdiff
path: root/c/common.cpp
blob: 93f97eb20eccc1f19eaa49886f9b92c90409066b (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include <memory>
#include <windows.h>
#include <SWI-Prolog.h>

#include "resource.h"
#include "defs.h"

/* Convert normal string to TSTR using given codepage. */
TCHAR *
TszFromSz(const char *sz, int iCp)
{
	TCHAR *tsz;

#ifdef UNICODE
	int cbMultiByte, cchWideChar;

	cbMultiByte = strlen(sz)+1;
	cchWideChar = MultiByteToWideChar(iCp, 0, sz, cbMultiByte, NULL, 0);
	tsz = (TCHAR *)malloc(cchWideChar*sizeof(WCHAR));
	if (!tsz) return NULL;
	if (!MultiByteToWideChar(iCp, 0, sz, cbMultiByte, tsz, cchWideChar))
		return NULL;
#else
	tsz = malloc(strlen(sz)+1);
	if (!tsz) return NULL;
	strcpy(tsz, sz);
#endif

	return tsz;
}

Library::Library(const TCHAR *tszLibrary)
{
	m_hModule = LoadLibrary(tszLibrary);
}

Library::~Library()
{
	if (m_hModule)
		FreeLibrary(m_hModule);
}

FARPROC
Library::GetProcAddress(const char *szProc)
{
	return m_hModule? ::GetProcAddress(m_hModule, szProc): NULL;
}

std::unique_ptr<Library>
Library::Load(const TCHAR *tszLibrary)
{
	auto upLib = std::make_unique<Library>(tszLibrary);
	if (!upLib->m_hModule) upLib = nullptr;
	return upLib;
}