"Fossies" - the Fresh Open Source Software Archive

Member "epstool-3.08/src/cdll.h" (10 Jun 2005, 965 Bytes) of package /linux/misc/old/ghost/ghostgum/epstool-3.08-os2.zip:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 /* Copyright (C) 2001-2002 Ghostgum Software Pty Ltd.  All rights reserved.
    2 
    3   This software is provided AS-IS with no warranty, either express or
    4   implied.
    5 
    6   This software is distributed under licence and may not be copied,
    7   modified or distributed except as expressly authorised under the terms
    8   of the licence contained in the file LICENCE in this distribution.
    9 
   10   For more information about licensing, please refer to
   11   http://www.ghostgum.com.au/ or contact Ghostsgum Software Pty Ltd, 
   12   218 Gallaghers Rd, Glen Waverley VIC 3150, AUSTRALIA, 
   13   Fax +61 3 9886 6616.
   14 */
   15 
   16 /* $Id: cdll.h,v 1.2 2002/05/27 09:40:10 ghostgum Exp $ */
   17 /* Platform dependent DLL / shared object loading */
   18 
   19 #ifndef CDLL_INCLUDED
   20 #define CDLL_INCLUDED
   21 
   22 /* platform dependent */
   23 typedef void * (*dll_proc)(void);
   24 int dll_open(GGMODULE *hmodule, LPCTSTR name, TCHAR *msg, int msglen);
   25 int dll_close(GGMODULE *hmodule);
   26 dll_proc dll_sym(GGMODULE *hmodule, const char *name);
   27 
   28 #endif