diff options
author | peter <peter@FreeBSD.org> | 2001-05-17 08:21:06 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-05-17 08:21:06 +0000 |
commit | 2d92ca4d1406bb14f0584ee668516b4c3303416c (patch) | |
tree | ddc5913d13b386dceb6b29644af208b011ae2bad /contrib/ncurses/form/fld_user.c | |
parent | 5411edc0fbb52100d0c701ae4710b831a88fe7d5 (diff) | |
parent | b7ada7f2444f41b672faef4f93e446bdf8584cf9 (diff) | |
download | FreeBSD-src-2d92ca4d1406bb14f0584ee668516b4c3303416c.zip FreeBSD-src-2d92ca4d1406bb14f0584ee668516b4c3303416c.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r76726,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/ncurses/form/fld_user.c')
-rw-r--r-- | contrib/ncurses/form/fld_user.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/contrib/ncurses/form/fld_user.c b/contrib/ncurses/form/fld_user.c index cf5b4c2..5e668b4 100644 --- a/contrib/ncurses/form/fld_user.c +++ b/contrib/ncurses/form/fld_user.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: fld_user.c,v 1.8 1999/05/16 17:20:09 juergen Exp $") +MODULE_ID("$Id: fld_user.c,v 1.9 2000/12/10 02:09:38 tom Exp $") /*--------------------------------------------------------------------------- | Facility : libnform @@ -43,7 +43,8 @@ MODULE_ID("$Id: fld_user.c,v 1.8 1999/05/16 17:20:09 juergen Exp $") | | Return Values : E_OK - on success +--------------------------------------------------------------------------*/ -int set_field_userptr(FIELD * field, void *usrptr) +NCURSES_EXPORT(int) +set_field_userptr (FIELD * field, void *usrptr) { Normalize_Field( field )->usrptr = usrptr; RETURN(E_OK); @@ -59,7 +60,8 @@ int set_field_userptr(FIELD * field, void *usrptr) | Return Values : Value of pointer. If no such pointer has been set, | NULL is returned +--------------------------------------------------------------------------*/ -void *field_userptr(const FIELD *field) +NCURSES_EXPORT(void *) +field_userptr (const FIELD *field) { return Normalize_Field( field )->usrptr; } |