home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / quot210s.zip / include / typeset.h < prev   
C/C++ Source or Header  |  1998-09-07  |  761b  |  38 lines

  1. /*
  2.  * typeset.h
  3.  *
  4.  * Header file for typesetting functions for HTML strings.
  5.  *
  6.  *      Created: 26th November, 1997
  7.  * Version 2.00: 18th December, 1997
  8.  * Version 2.10: 7th September, 1998
  9.  *
  10.  * (C) 1997-1998 Nicholas Paul Sheppard
  11.  *
  12.  * This file is distributed under the GNU General Public License. See the
  13.  * file copying.txt for details.
  14.  */
  15.  
  16. #ifndef _QUOTERISER_TYPESET_H
  17. #define _QUOTERISER_TYPESET_H
  18.  
  19. #ifndef GENERIC
  20. # include <os2.h>
  21. #endif
  22.  
  23. /* font identifiers */
  24. #ifndef GENERIC
  25. # define IDF_NORMAL        50
  26. # define IDF_ITALIC        51
  27. # define IDF_BOLD        52
  28. # define IDF_BOLDITALIC        53
  29. #endif
  30.  
  31. #ifndef GENERIC
  32. HMF    TypesetMetafile(HAB, HWND, char **, RECTL *, FATTRS *);
  33. #endif
  34.  
  35. char    *TypesetASCII(char **, int);
  36.  
  37. #endif
  38.