aboutsummaryrefslogtreecommitdiff
path: root/contrib/ncurses/form/frm_def.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ncurses/form/frm_def.c')
-rw-r--r--contrib/ncurses/form/frm_def.c21
1 files changed, 13 insertions, 8 deletions
diff --git a/contrib/ncurses/form/frm_def.c b/contrib/ncurses/form/frm_def.c
index 34be5fe7ca9c..0802e49a4114 100644
--- a/contrib/ncurses/form/frm_def.c
+++ b/contrib/ncurses/form/frm_def.c
@@ -1,5 +1,5 @@
/****************************************************************************
- * Copyright (c) 1998 Free Software Foundation, Inc. *
+ * Copyright (c) 1998,2000 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 *
@@ -32,7 +32,7 @@
#include "form.priv.h"
-MODULE_ID("$Id: frm_def.c,v 1.9 1999/05/16 17:20:43 juergen Exp $")
+MODULE_ID("$Id: frm_def.c,v 1.10 2000/12/10 02:09:38 tom Exp $")
/* this can't be readonly */
static FORM default_form = {
@@ -60,7 +60,7 @@ static FORM default_form = {
NULL /* fieldterm */
};
-FORM *_nc_Default_Form = &default_form;
+NCURSES_EXPORT_VAR(FORM *) _nc_Default_Form = &default_form;
/*---------------------------------------------------------------------------
| Facility : libnform
@@ -269,7 +269,8 @@ INLINE static int Associate_Fields(FORM *form, FIELD **fields)
|
| Return Values : Pointer to form. NULL if error occured.
+--------------------------------------------------------------------------*/
-FORM *new_form(FIELD ** fields)
+NCURSES_EXPORT(FORM *)
+new_form (FIELD ** fields)
{
int err = E_SYSTEM_ERROR;
@@ -301,7 +302,8 @@ FORM *new_form(FIELD ** fields)
| E_BAD_ARGUMENT - invalid form pointer
| E_POSTED - form is posted
+--------------------------------------------------------------------------*/
-int free_form(FORM * form)
+NCURSES_EXPORT(int)
+free_form (FORM * form)
{
if ( !form )
RETURN(E_BAD_ARGUMENT);
@@ -327,7 +329,8 @@ int free_form(FORM * form)
| E_BAD_ARGUMENT - invalid form pointer
| E_POSTED - form is posted
+--------------------------------------------------------------------------*/
-int set_form_fields(FORM * form, FIELD ** fields)
+NCURSES_EXPORT(int)
+set_form_fields (FORM * form, FIELD ** fields)
{
FIELD **old;
int res;
@@ -355,7 +358,8 @@ int set_form_fields(FORM * form, FIELD ** fields)
|
| Return Values : Pointer to field array
+--------------------------------------------------------------------------*/
-FIELD **form_fields(const FORM * form)
+NCURSES_EXPORT(FIELD **)
+form_fields (const FORM * form)
{
return (Normalize_Form( form )->field);
}
@@ -368,7 +372,8 @@ FIELD **form_fields(const FORM * form)
|
| Return Values : Number of fields, -1 if none are defined
+--------------------------------------------------------------------------*/
-int field_count(const FORM * form)
+NCURSES_EXPORT(int)
+field_count (const FORM * form)
{
return (Normalize_Form( form )->maxfield);
}