X-Git-Url: http://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=doc%2Fhtml%2Fada%2Fterminal_interface-curses-forms-field_types__ads.htm;h=36f9892dea79e175f26979189d05d05db14fb265;hb=bca50d0d8592defee6c584fdedd25f4b1a31345b;hp=a22b5d52df1c68fa456e2b7a3257e1b233b5effb;hpb=b0bdfbb1c78346047c54d8e516a104fcff586e52;p=ncurses.git diff --git a/doc/html/ada/terminal_interface-curses-forms-field_types__ads.htm b/doc/html/ada/terminal_interface-curses-forms-field_types__ads.htm index a22b5d52..36f9892d 100644 --- a/doc/html/ada/terminal_interface-curses-forms-field_types__ads.htm +++ b/doc/html/ada/terminal_interface-curses-forms-field_types__ads.htm @@ -55,13 +55,13 @@ -- @Revision: 1.19 @ -- Binding Version 01.00 ------------------------------------------------------------------------------ -with Interfaces.C; +with Interfaces.C; with Terminal_Interface.Curses.Aux; package Terminal_Interface.Curses.Forms.Field_Types is pragma Preelaborate (Terminal_Interface.Curses.Forms.Field_Types); - use type Interfaces.C.int; - subtype C_Int is Interfaces.C.int; + use type Interfaces.C.int; + subtype C_Int is Interfaces.C.int; -- |===================================================================== -- | Man page form_fieldtype.3x @@ -107,28 +107,28 @@ -- | Most of this is used by the implementations of the child packages. -- | private - type Makearg_Function is access - function (Args : System.Address) return System.Address; + type Makearg_Function is access + function (Args : System.Address) return System.Address; pragma Convention (C, Makearg_Function); type Copyarg_Function is access - function (Usr : System.Address) return System.Address; + function (Usr : System.Address) return System.Address; pragma Convention (C, Copyarg_Function); type Freearg_Function is access - procedure (Usr : System.Address); + procedure (Usr : System.Address); pragma Convention (C, Freearg_Function); type Field_Check_Function is access - function (Fld : Field; Usr : System.Address) return Curses_Bool; + function (Fld : Field; Usr : System.Address) return Curses_Bool; pragma Convention (C, Field_Check_Function); type Char_Check_Function is access - function (Ch : C_Int; Usr : System.Address) return Curses_Bool; + function (Ch : C_Int; Usr : System.Address) return Curses_Bool; pragma Convention (C, Char_Check_Function); type Choice_Function is access - function (Fld : Field; Usr : System.Address) return Curses_Bool; + function (Fld : Field; Usr : System.Address) return Curses_Bool; pragma Convention (C, Choice_Function); -- +---------------------------------------------------------------------- @@ -136,8 +136,8 @@ -- | type Low_Level_Field_Type is record - Status : Interfaces.C.unsigned_short; - Ref_Count : Interfaces.C.long; + Status : Interfaces.C.unsigned_short; + Ref_Count : Interfaces.C.long; Left, Right : System.Address; Makearg : Makearg_Function; Copyarg : Copyarg_Function;