home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / DC-POS24.LZX / pOS / Guide.lzx / Guide / pSL / pSLBase.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-08  |  1.3 KB  |  62 lines

  1. @DATABASE "pSL/pSLBase.h"
  2. @MASTER   "Work2:AD/IInc/pSL/pSLBase.h"
  3. @REMARK   This file was created by ADtoHT 2.0 on 08-Dez-96  14:43:33
  4. @REMARK   Do not edit
  5. @REMARK   ADtoHT is © 1993-1995 Christian Stieber
  6.  
  7. @NODE MAIN "pSL/pSLBase.h"
  8. @TOC "__pOS_Dev.guide/MAIN"
  9.  
  10. @{"pSL/pSLBase.h" LINK File}
  11.  
  12. @ENDNODE
  13. @NODE File "pSL/pSLBase.h"
  14. #ifndef __INC_POS_PSL_PSLBASE_H
  15. #define __INC_POS_PSL_PSLBASE_H
  16. /*******************************************************************
  17.  $CRT 27 Oct 1996 : hb
  18.  
  19.  $AUT Holger Burkarth
  20.  $DAT >>pSLBase.h<<   30 Nov 1996    09:32:24 - (C) ProDAD
  21. *******************************************************************/
  22. #ifndef __INC_POS_PEXEC_LIBRARY_H
  23. #include "p:pExec/Library.h"
  24. #endif
  25. #ifndef __INC_POS_PEXEC_SEMA_H
  26. #include "p:pExec/Sema.h"
  27. #endif
  28. #ifndef __INC_POS_PEXEC_MEMORY_H
  29. #include "p:pExec/Memory.h"
  30. #endif
  31.  
  32.  
  33.  
  34. @{"struct pOS_NClass" LINK "pExec/Class.h/File" 48};
  35.  
  36. /*----------------------------------
  37. -----------------------------------*/
  38. struct pOS_pSLBase
  39. {
  40.   pOS_Library   psl_Lib;
  41.   pOS_Semaphore psl_Sem;
  42.   pOS_MemPool   psl_MP;
  43.   ULONG         psl_Flags;    /* (enum pOS_pSLBaseFlags) */
  44.   pOS_ExList    psl_FontList;
  45.   UWORD         psl_FontListCnt;
  46.  
  47.   pOS_NClass *psl_G1Class;
  48.   pOS_NClass *psl_G2Class;
  49. };
  50.  
  51.  
  52.  
  53.  
  54. enum pOS_pSLBaseFlags /** psl_Flags **/
  55. {
  56.   PSLBSF_FontList = 0x0001, /* FontList ist eingelesen */
  57. };
  58.  
  59.  
  60. #endif
  61. @ENDNODE
  62.