📄 cdll.h
字号:
/* Copyright (C) 2000-2002, Ghostgum Software Pty Ltd. All rights reserved.
This file is part of GSview.
This program 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 GSview Licence (the "Licence")
for full details.
Every copy of GSview must include a copy of the Licence, normally in a
plain ASCII text file named LICENCE. The Licence grants you the right
to copy, modify and redistribute GSview, but only under certain conditions
described in the Licence. Among other things, the Licence requires that
the copyright notice and this notice be preserved on all copies.
*/
/* cdll.h */
#ifndef CDLL_INCLUDED
#define CDLL_INCLUDED
#define return_error(val) return val
/* State of GS DLL */
/* State transitions are usually between adjacent states */
typedef enum {
/* Ghostscript is unloaded, or has been loaded and has
* not been initialised
*/
GS_UNINIT = 0,
/* Ghostscript has been initialised and no input is being
* sent to it.
*/
GS_IDLE = 1,
/* Input is being sent to Ghostscript */
GS_BUSY = 2,
/* Waiting at showpage */
GS_PAGE = 3
} GSSTATE;
#ifdef UNIX
#define GGMODULE void *
#endif
#ifdef OS2
#define GGMODULE HMODULE
#endif
#ifdef _Windows
#define GGMODULE HINSTANCE
#endif
/* main structure with info about the GS DLL */
typedef struct tagGSDLL {
BOOL open; /* true if DLL loaded */
GGMODULE hmodule; /* handle to module */
GSSTATE state;
long revision_number;
gs_main_instance *minst;
/* pointers to DLL functions */
PFN_gsapi_revision revision;
PFN_gsapi_new_instance new_instance;
PFN_gsapi_delete_instance delete_instance;
PFN_gsapi_set_stdio set_stdio;
PFN_gsapi_set_poll set_poll;
PFN_gsapi_set_display_callback set_display_callback;
PFN_gsapi_init_with_args init_with_args;
PFN_gsapi_run_string run_string;
PFN_gsapi_run_string_begin run_string_begin;
PFN_gsapi_run_string_continue run_string_continue;
PFN_gsapi_run_string_end run_string_end;
PFN_gsapi_exit exit;
} GSDLL;
/* platform dependent */
int gsdll_open(GSDLL *dll, const char *name);
int gsdll_close(GSDLL *dll);
void * gsdll_sym(GSDLL *dll, const char *name);
/* platform independent */
int gsdll_load(GSDLL *dll, const char *name);
int gsdll_free(GSDLL *dll);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -