Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
80 lines (65 loc) · 2.25 KB

SDL_sysloadso.c

File metadata and controls

80 lines (65 loc) · 2.25 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Jan 24, 2010
Jan 24, 2010
3
Copyright (C) 1997-2010 Sam Lantinga
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
9
10
11
12
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
19
20
21
Sam Lantinga
slouken@libsdl.org
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Jan 21, 2011
Jan 21, 2011
24
#ifdef SDL_LOADSO_WINDOWS
Apr 14, 2006
Apr 14, 2006
25
26
27
28
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* System dependent library loading routines */
Jan 25, 2011
Jan 25, 2011
29
#include "../../core/windows/SDL_windows.h"
30
31
32
#include "SDL_loadso.h"
Jul 10, 2006
Jul 10, 2006
33
34
void *
SDL_LoadObject(const char *sofile)
Jan 25, 2011
Jan 25, 2011
36
37
38
LPTSTR tstr = WIN_UTF8ToString(sofile);
void *handle = (void *) LoadLibrary(tstr);
SDL_free(tstr);
Jul 10, 2006
Jul 10, 2006
39
40
41
/* Generate an error message if all loads failed */
if (handle == NULL) {
Jan 25, 2011
Jan 25, 2011
42
43
44
45
char errbuf[512];
SDL_strlcpy(errbuf, "Failed loading ", SDL_arraysize(errbuf));
SDL_strlcat(errbuf, sofile, SDL_arraysize(errbuf));
WIN_SetError(errbuf);
Jul 10, 2006
Jul 10, 2006
46
}
Jan 25, 2011
Jan 25, 2011
47
return handle;
Jul 10, 2006
Jul 10, 2006
50
51
void *
SDL_LoadFunction(void *handle, const char *name)
Jan 25, 2011
Jan 25, 2011
53
54
55
56
57
58
#ifdef _WIN32_WCE
LPTSTR tstr = WIN_UTF8ToString(name);
void *symbol = (void *) GetProcAddress((HMODULE) handle, tstr);
SDL_free(tstr);
#else
void *symbol = (void *) GetProcAddress((HMODULE) handle, name);
59
60
#endif
Jul 10, 2006
Jul 10, 2006
61
if (symbol == NULL) {
Jan 25, 2011
Jan 25, 2011
62
63
64
65
char errbuf[512];
SDL_strlcpy(errbuf, "Failed loading ", SDL_arraysize(errbuf));
SDL_strlcat(errbuf, name, SDL_arraysize(errbuf));
WIN_SetError(errbuf);
Jul 10, 2006
Jul 10, 2006
66
}
Jan 25, 2011
Jan 25, 2011
67
return symbol;
Jul 10, 2006
Jul 10, 2006
70
71
void
SDL_UnloadObject(void *handle)
Jul 10, 2006
Jul 10, 2006
73
74
75
if (handle != NULL) {
FreeLibrary((HMODULE) handle);
}
Jan 21, 2011
Jan 21, 2011
78
#endif /* SDL_LOADSO_WINDOWS */
Oct 18, 2008
Oct 18, 2008
79
Jul 10, 2006
Jul 10, 2006
80
/* vi: set ts=4 sw=4 expandtab: */