home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / DC-POS24.LZX / pOS / IncPOS.lzx / pGadget / StrGad.h < prev   
Encoding:
C/C++ Source or Header  |  1997-03-18  |  923 b   |  36 lines

  1. #ifndef __INC_POS_PGADGET_STRGAD_H
  2. #define __INC_POS_PGADGET_STRGAD_H
  3. /*******************************************************************
  4.  Includes Release 24
  5.  (C) Copyright 1995-1997 proDAD
  6.      All Rights Reserved
  7.  
  8.  $AUT Holger Burkarth
  9.  $DAT >>StrGad.h<<   23 Feb 1997    17:01:02 - (C) ProDAD
  10. *******************************************************************/
  11. #ifndef __INC_POS_PGADGET_GADGET_H
  12. #include <pGadget/Gadget.h>
  13. #endif
  14.  
  15. /*----------------------------------
  16. -----------------------------------*/
  17. struct pOS_StrGadInfo
  18. {
  19.   CHAR             *sg_Buffer;
  20.   CHAR             *sg_UndoBuffer;
  21.   UWORD             sg_BufferPos;
  22.   UWORD             sg_MaxChars;
  23.   UWORD             sg_DispPos;
  24.   UWORD             sg_UndoPos;
  25.   UWORD             sg_NumChars;
  26.   SLONG             sg_LongInt;
  27.  
  28.   const struct pOS_KeyMap   *sg_AltKeyMap;
  29.   const struct pOS_TextFont *sg_Font;
  30.  
  31. /** SYSTEM-PRIVATE-DATAS **/
  32.  
  33. };
  34.  
  35. #endif
  36.