X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=form%2Fllib-lform;h=2b6abdcd7c997ac4bfff708b42c9bf49f4318f3a;hp=bd7c3a4f1d87505c1f65fe2a24fe79dcf5ca2dc5;hb=d4ff840fddef2f6deb4a3daeb26d398a93b58dd2;hpb=55ccd2b959766810cf7db8d1c4462f338ce0afc8 diff --git a/form/llib-lform b/form/llib-lform index bd7c3a4f..2b6abdcd 100644 --- a/form/llib-lform +++ b/form/llib-lform @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1998-2002,2005 Free Software Foundation, Inc. * + * Copyright (c) 1998-2005,2010 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -27,13 +27,13 @@ ****************************************************************************/ /**************************************************************************** - * Author: Thomas E. Dickey 1996,1997,2002,2005 * + * Author: Thomas E. Dickey 1996-2005,2010 * ****************************************************************************/ /* LINTLIBRARY */ /* ./f_trace.c */ -#include "form.priv.h" +#include #undef _nc_retrace_field_ptr FIELD **_nc_retrace_field_ptr( @@ -264,7 +264,7 @@ int move_field( /* ./fld_newftyp.c */ #undef _nc_Default_FieldType -const FIELDTYPE *_nc_Default_FieldType = {0}; +FIELDTYPE *_nc_Default_FieldType; #undef new_fieldtype FIELDTYPE *new_fieldtype( @@ -396,6 +396,12 @@ NCURSES_BOOL data_ahead( #undef _nc_Default_Form FORM *_nc_Default_Form; +#undef new_form_sp +FORM *new_form_sp( + SCREEN *sp, + FIELD **fields) + { return(*(FORM **)0); } + #undef new_form FORM *new_form( FIELD **fields) @@ -424,6 +430,13 @@ int field_count( /* ./frm_driver.c */ +#undef _nc_get_fieldbuffer +void _nc_get_fieldbuffer( + FORM *form, + FIELD *field, + char *buf) + { /* void */ } + #undef _nc_Position_Form_Cursor int _nc_Position_Form_Cursor( FORM *form) @@ -683,9 +696,23 @@ typedef struct } enumARG; +typedef struct + { + char **kwds; + int ccase; + int cunique; + } +enumParams; + #undef TYPE_ENUM FIELDTYPE *TYPE_ENUM; +/* ./fty_generic.c */ + +#undef _nc_fty_generic +void _nc_fty_generic(void) + { /* void */ } + /* ./fty_int.c */ typedef struct @@ -696,6 +723,14 @@ typedef struct } integerARG; +typedef struct + { + int precision; + long low; + long high; + } +integerPARM; + #undef TYPE_INTEGER FIELDTYPE *TYPE_INTEGER; @@ -716,6 +751,14 @@ typedef struct } numericARG; +typedef struct + { + int precision; + double low; + double high; + } +thisPARM; + #undef TYPE_NUMERIC FIELDTYPE *TYPE_NUMERIC;