home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / DC-POS24.LZX / pOS / IncPOS.lzx / pLocale / Catalog.h next >
Encoding:
C/C++ Source or Header  |  1997-03-18  |  966 b   |  46 lines

  1. #ifndef __INC_POS_LOCALE_CATALOG_H
  2. #define __INC_POS_LOCALE_CATALOG_H
  3. /*******************************************************************
  4.  Includes Release 24
  5.  (C) Copyright 1995-1997 proDAD
  6.      All Rights Reserved
  7.  
  8.  $AUT Holger Papajewski
  9.  $DAT >>Catalog.h<<   27 Nov 1996    17:49:21 - (C) ProDAD
  10. *******************************************************************/
  11.  
  12.  
  13. #ifndef __INC_POS_PEXEC_LIST_H
  14. #include <pExec/List.h>
  15. #endif
  16.  
  17.  
  18.  
  19. /*----------------------------------
  20. -----------------------------------*/
  21. struct pOS_CatalogItem
  22. {
  23.   ULONG        cati_ID;
  24.   const CHAR  *cati_Str;
  25. };
  26.  
  27.  
  28.  
  29. /*----------------------------------
  30. -----------------------------------*/
  31. struct pOS_Catalog
  32. {
  33.   struct pOS_ExNode       cat_Node;
  34.   const CHAR             *cat_Language;
  35.   ULONG                   cat_CodeSet;
  36.   UWORD                   cat_Version;
  37.   UWORD                   cat_Revision;
  38.   ULONG                   cat_NumStrings;
  39.  
  40.   /***** SYSTEM-DATA *****/
  41. };
  42.  
  43.  
  44.  
  45. #endif
  46.