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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
|
/* Copyright (C) 2001-2012 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael,
CA 94903, U.S.A., +1(415)492-9861, for further information.
*/
/* dwdll.c */
#define STRICT
#include <windows.h>
#include <string.h>
#include <stdio.h>
#include "stdpre.h"
#include "gpgetenv.h"
#include "gscdefs.h"
#define GSREVISION gs_revision
#define GSDLLEXPORT
#define GSDLLAPI CALLBACK
#define GSDLLCALL
#include "dwdll.h"
#ifdef _WIN64
static const char name[] = "gsdll64.dll";
#else
static const char name[] = "gsdll32.dll";
#endif
int load_dll(GSDLL *gsdll, char *last_error, int len)
{
char fullname[1024];
char *p;
int length;
gsapi_revision_t rv;
/* Don't load if already loaded */
if (gsdll->hmodule)
return 0;
/* First try to load DLL from the same directory as EXE */
GetModuleFileName(GetModuleHandle(NULL), fullname, sizeof(fullname));
if ((p = strrchr(fullname,'\\')) != (char *)NULL)
p++;
else
p = fullname;
*p = '\0';
strcat(fullname, name);
gsdll->hmodule = LoadLibrary(fullname);
/* Next try to load DLL with name in registry or environment variable */
if (gsdll->hmodule < (HINSTANCE)HINSTANCE_ERROR) {
length = sizeof(fullname);
if (gp_getenv("GS_DLL", fullname, &length) == 0)
gsdll->hmodule = LoadLibrary(fullname);
}
/* Finally try the system search path */
if (gsdll->hmodule < (HINSTANCE)HINSTANCE_ERROR)
gsdll->hmodule = LoadLibrary(name);
if (gsdll->hmodule < (HINSTANCE)HINSTANCE_ERROR) {
/* Failed */
DWORD err = GetLastError();
sprintf(fullname, "Can't load DLL, LoadLibrary error code %ld", err);
strncpy(last_error, fullname, len-1);
gsdll->hmodule = (HINSTANCE)0;
return 1;
}
/* DLL is now loaded */
/* Get pointers to functions */
gsdll->revision = (PFN_gsapi_revision) GetProcAddress(gsdll->hmodule,
"gsapi_revision");
if (gsdll->revision == NULL) {
strncpy(last_error, "Can't find gsapi_revision\n", len-1);
unload_dll(gsdll);
return 1;
}
/* check DLL version */
if (gsdll->revision(&rv, sizeof(rv)) != 0) {
sprintf(fullname, "Unable to identify Ghostscript DLL revision - it must be newer than needed.\n");
strncpy(last_error, fullname, len-1);
unload_dll(gsdll);
return 1;
}
if (rv.revision != GSREVISION) {
sprintf(fullname, "Wrong version of DLL found.\n Found version %ld\n Need version %ld\n", rv.revision, GSREVISION);
strncpy(last_error, fullname, len-1);
unload_dll(gsdll);
return 1;
}
/* continue loading other functions */
gsdll->new_instance = (PFN_gsapi_new_instance) GetProcAddress(gsdll->hmodule,
"gsapi_new_instance");
if (gsdll->new_instance == NULL) {
strncpy(last_error, "Can't find gsapi_new_instance\n", len-1);
unload_dll(gsdll);
return 1;
}
gsdll->delete_instance = (PFN_gsapi_delete_instance) GetProcAddress(gsdll->hmodule,
"gsapi_delete_instance");
if (gsdll->delete_instance == NULL) {
strncpy(last_error, "Can't find gsapi_delete_instance\n", len-1);
unload_dll(gsdll);
return 1;
}
gsdll->set_stdio = (PFN_gsapi_set_stdio) GetProcAddress(gsdll->hmodule,
"gsapi_set_stdio");
if (gsdll->set_stdio == NULL) {
strncpy(last_error, "Can't find gsapi_set_stdio\n", len-1);
unload_dll(gsdll);
return 1;
}
gsdll->set_poll = (PFN_gsapi_set_poll) GetProcAddress(gsdll->hmodule,
"gsapi_set_poll");
if (gsdll->set_poll == NULL) {
strncpy(last_error, "Can't find gsapi_set_poll\n", len-1);
unload_dll(gsdll);
return 1;
}
gsdll->set_display_callback = (PFN_gsapi_set_display_callback)
GetProcAddress(gsdll->hmodule, "gsapi_set_display_callback");
if (gsdll->set_display_callback == NULL) {
strncpy(last_error, "Can't find gsapi_set_display_callback\n", len-1);
unload_dll(gsdll);
return 1;
}
gsdll->init_with_args = (PFN_gsapi_init_with_args)
GetProcAddress(gsdll->hmodule, "gsapi_init_with_args");
if (gsdll->init_with_args == NULL) {
strncpy(last_error, "Can't find gsapi_init_with_args\n", len-1);
unload_dll(gsdll);
return 1;
}
gsdll->run_string = (PFN_gsapi_run_string) GetProcAddress(gsdll->hmodule,
"gsapi_run_string");
if (gsdll->run_string == NULL) {
strncpy(last_error, "Can't find gsapi_run_string\n", len-1);
unload_dll(gsdll);
return 1;
}
gsdll->exit = (PFN_gsapi_exit) GetProcAddress(gsdll->hmodule,
"gsapi_exit");
if (gsdll->exit == NULL) {
strncpy(last_error, "Can't find gsapi_exit\n", len-1);
unload_dll(gsdll);
return 1;
}
gsdll->set_visual_tracer = (PFN_gsapi_set_visual_tracer)
GetProcAddress(gsdll->hmodule, "gsapi_set_visual_tracer");
if (gsdll->set_visual_tracer == NULL) {
strncpy(last_error, "Can't find gsapi_set_visual_tracer\n", len-1);
unload_dll(gsdll);
return 1;
}
return 0;
}
void unload_dll(GSDLL *gsdll)
{
/* Set functions to NULL to prevent use */
gsdll->revision = NULL;
gsdll->new_instance = NULL;
gsdll->delete_instance = NULL;
gsdll->init_with_args = NULL;
gsdll->run_string = NULL;
gsdll->exit = NULL;
gsdll->set_stdio = NULL;
gsdll->set_poll = NULL;
gsdll->set_display_callback = NULL;
gsdll->set_visual_tracer = NULL;
if (gsdll->hmodule != (HINSTANCE)NULL)
FreeLibrary(gsdll->hmodule);
gsdll->hmodule = NULL;
}
|