blob: ab63ee2a4d5ac88ca0042c80c112fbc87e2bb6bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* Copyright (C) 1994-1996, Russell Lang. All rights reserved.
This software is licensed to a single customer by Artifex Software Inc.
under the terms of a specific OEM agreement.
*/
/*$RCSfile$ $Revision$ */
/* gsdll extension for OS/2 platforms */
#ifndef gsdllos2_INCLUDED
# define gsdllos2_INCLUDED
/* DLL exported functions */
/* for load time dynamic linking */
unsigned long gsdll_get_bitmap(unsigned char *device, unsigned char **pbitmap);
/* Function pointer typedefs */
/* for run time dynamic linking */
typedef long (*GSDLLAPI PFN_gsdll_get_bitmap) (unsigned char *, unsigned char **);
#endif /* gsdllos2_INCLUDED */
|