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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
|
/* Copyright (C) 1996, Russell Lang. All rights reserved.
This file is part of Aladdin Ghostscript.
Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author
or distributor accepts any responsibility for the consequences of using it,
or for whether it serves any particular purpose or works at all, unless he
or she says so in writing. Refer to the Aladdin Ghostscript Free Public
License (the "License") for full details.
Every copy of Aladdin Ghostscript must include a copy of the License,
normally in a plain ASCII text file named PUBLIC. The License grants you
the right to copy, modify and redistribute Aladdin Ghostscript, but only
under certain conditions described in the License. Among other things, the
License requires that the copyright notice and this notice be preserved on
all copies.
*/
// dwdll.cpp
// gsdll class for MS-Windows
#define STRICT
#include <windows.h>
#include <string.h>
#include <stdio.h>
extern "C" {
#include "gsdll.h"
}
#include "dwdll.h" // gsdll_class
static char not_loaded[] = "DLL is not loaded";
static char func_null[] = "A function pointer to the DLL is NULL";
static char not_init[] = "Not initialized";
int
gsdll_class::load(const HINSTANCE in_hinstance,
const char *name, const long need_version)
{
char fullname[1024];
const char *shortname;
char *p;
long version;
// Don't load if already loaded
if (hmodule)
return 0;
hinstance = in_hinstance;
initialized = FALSE;
// Try to load DLL first with given path
hmodule = LoadLibrary(name);
if (hmodule < (HINSTANCE)HINSTANCE_ERROR) {
// failed
// try again, with path of EXE
if ((shortname = strrchr((char *)name, '\\')) == (const char *)NULL)
shortname = name;
GetModuleFileName(hinstance, fullname, sizeof(fullname));
if ((p = strrchr(fullname,'\\')) != (char *)NULL)
p++;
else
p = fullname;
*p = '\0';
strcat(fullname, shortname);
hmodule = LoadLibrary(fullname);
if (hmodule < (HINSTANCE)HINSTANCE_ERROR) {
// failed again
// try once more, this time on system search path
hmodule = LoadLibrary(shortname);
if (hmodule < (HINSTANCE)HINSTANCE_ERROR) {
sprintf(last_error, "Couldn't load DLL, LoadLibrary error code %d", (int)hmodule);
hmodule = (HINSTANCE)0;
return 1;
}
}
}
// DLL is now loaded
// Get pointers to functions
c_revision = (PFN_gsdll_revision) GetProcAddress(hmodule, "gsdll_revision");
if (c_revision == NULL) {
sprintf(last_error, "Can't find gsdll_revision\n");
unload();
return 1;
}
// check DLL version
c_revision(NULL, NULL, &version, NULL);
if (version != need_version) {
sprintf(last_error, "Wrong version of DLL found.\n Found version %ld\n Need version %ld\n", version, need_version);
unload();
return 1;
}
// continue loading other functions */
c_init = (PFN_gsdll_init) GetProcAddress(hmodule, "gsdll_init");
if (c_init == NULL) {
sprintf(last_error, "Can't find gsdll_init\n");
unload();
return 1;
}
c_execute_begin = (PFN_gsdll_execute_begin) GetProcAddress(hmodule, "gsdll_execute_begin");
if (c_execute_begin == NULL) {
sprintf(last_error, "Can't find gsdll_execute_begin\n");
unload();
return 1;
}
c_execute_cont = (PFN_gsdll_execute_cont) GetProcAddress(hmodule, "gsdll_execute_cont");
if (c_execute_cont == NULL) {
sprintf(last_error, "Can't find gsdll_execute_cont\n");
unload();
return 1;
}
c_execute_end = (PFN_gsdll_execute_end) GetProcAddress(hmodule, "gsdll_execute_end");
if (c_execute_end == NULL) {
sprintf(last_error, "Can't find gsdll_execute_end\n");
unload();
return 1;
}
c_exit = (PFN_gsdll_exit) GetProcAddress(hmodule, "gsdll_exit");
if (c_exit == NULL) {
sprintf(last_error, "Can't find gsdll_exit\n");
unload();
return 1;
}
c_lock_device = (PFN_gsdll_lock_device) GetProcAddress(hmodule, "gsdll_lock_device");
if (c_lock_device == NULL) {
sprintf(last_error, "Can't find gsdll_lock_device\n");
unload();
return 1;
}
c_copy_dib = (PFN_gsdll_copy_dib) GetProcAddress(hmodule, "gsdll_copy_dib");
if (c_copy_dib == NULL) {
sprintf(last_error, "Can't find gsdll_copy_dib\n");
unload();
return 1;
}
c_copy_palette = (PFN_gsdll_copy_palette) GetProcAddress(hmodule, "gsdll_copy_palette");
if (c_copy_palette == NULL) {
sprintf(last_error, "Can't find gsdll_copy_palette\n");
unload();
return 1;
}
c_draw = (PFN_gsdll_draw) GetProcAddress(hmodule, "gsdll_draw");
if (c_draw == NULL) {
sprintf(last_error, "Can't find gsdll_draw\n");
unload();
return 1;
}
return 0;
}
int
gsdll_class::unload(void)
{
// exit Ghostscript interpreter
if (initialized) {
if (!execute_code)
c_execute_end();
c_exit();
#ifndef __WIN32__
FreeProcInstance((FARPROC)callback);
#endif
callback = NULL;
}
// Set functions to NULL to prevent use
c_revision = NULL;
c_init = NULL;
c_execute_begin = NULL;
c_execute_cont = NULL;
c_execute_end = NULL;
c_exit = NULL;
c_lock_device = NULL;
c_copy_dib = NULL;
c_copy_palette = NULL;
c_draw = NULL;
// need to do more than this
device = NULL;
// Don't do anything else if already unloaded
if (hmodule == (HINSTANCE)NULL)
return 0;
FreeLibrary(hmodule);
return 0;
}
int
gsdll_class::revision(char FAR * FAR *product, char FAR * FAR *copyright,
long FAR *revision, long FAR *revisiondate)
{
if (!hmodule) {
strcpy(last_error, not_loaded);
return 1;
}
if (!c_revision)
return c_revision(product, copyright, revision, revisiondate);
strcpy(last_error, func_null);
return 1;
}
int
gsdll_class::init(GSDLL_CALLBACK in_callback, HWND hwnd, int argc, char FAR * FAR *argv)
{
int rc;
execute_code = 0;
if (!hmodule) {
strcpy(last_error, not_loaded);
return 1;
}
if (initialized) {
strcpy(last_error, "Already initialized");
return 1;
}
if (in_callback == (GSDLL_CALLBACK)NULL) {
strcpy(last_error, "Callback not provided");
return 1;
}
#ifdef __WIN32__
callback = in_callback;
#else
callback = (GSDLL_CALLBACK)MakeProcInstance((FARPROC)in_callback, hinstance);
#endif
if (c_init && c_execute_begin) {
rc = c_init(callback, hwnd, argc, argv);
if (rc) {
if (rc == GSDLL_INIT_IN_USE)
sprintf(last_error, "gsdll_init returns %d\nDLL already in use", rc);
else
sprintf(last_error, "gsdll_init returns %d\n", rc);
return rc;
}
else {
if ((rc = c_execute_begin()) != 0)
sprintf(last_error, "gsdll_execute_begin returns %d", rc);
else
initialized = TRUE;
return rc;
}
}
strcpy(last_error, func_null);
return 1;
}
int
gsdll_class::restart(int argc, char FAR * FAR *argv)
{
if (!hmodule) {
strcpy(last_error, not_loaded);
return 1;
}
if (!initialized) {
strcpy(last_error, not_init);
return 1;
}
if (c_execute_end && c_exit) {
if (!execute_code)
c_execute_end();
c_exit();
#ifndef __WIN32__
FreeProcInstance((FARPROC)callback);
#endif
// ignore return codes since they we may be aborting from an error
initialized = FALSE;
return init(callback, hwnd, argc, argv);
}
strcpy(last_error, func_null);
return 1;
}
int
gsdll_class::get_last_error(char *str, int len)
{
strncpy(str, last_error,
(len < sizeof(last_error) ? len : sizeof(last_error)));
return 0;
}
int
gsdll_class::execute(const char FAR *str, int len)
{
if (!hmodule) {
strcpy(last_error, not_loaded);
return 1;
}
if (!initialized) {
strcpy(last_error, not_init);
return 1;
}
if (c_execute_cont) {
execute_code = c_execute_cont(str, len);
return execute_code;
}
strcpy(last_error, func_null);
return 1;
}
int
gsdll_class::draw(const char FAR *device, HDC hdc, int dx, int dy, int wx, int wy, int sx, int sy)
{
RECT source, dest;
source.left = sx;
source.right = sx+wx;
source.top = sy;
source.bottom = sy+wy;
dest.left = dx;
dest.right = dx+wx;
dest.top = dy;
dest.bottom = dy+wy;
c_draw((unsigned char FAR *)device, hdc, &dest, &source);
return 0;
}
HPALETTE
gsdll_class::copy_palette(const char FAR *device)
{
return c_copy_palette((unsigned char FAR *)device);
}
HGLOBAL
gsdll_class::copy_dib(const char FAR *device)
{
return c_copy_dib((unsigned char FAR *)device);
}
int
gsdll_class::lock_device(const char FAR *device, int lock)
{
return c_lock_device((unsigned char FAR *)device, lock);
}
|