00001 /**************************************************************************** 00002 * Copyright (c) 1998-2003,2004 Free Software Foundation, Inc. * 00003 * * 00004 * Permission is hereby granted, free of charge, to any person obtaining a * 00005 * copy of this software and associated documentation files (the * 00006 * "Software"), to deal in the Software without restriction, including * 00007 * without limitation the rights to use, copy, modify, merge, publish, * 00008 * distribute, distribute with modifications, sublicense, and/or sell * 00009 * copies of the Software, and to permit persons to whom the Software is * 00010 * furnished to do so, subject to the following conditions: * 00011 * * 00012 * The above copyright notice and this permission notice shall be included * 00013 * in all copies or substantial portions of the Software. * 00014 * * 00015 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * 00016 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * 00017 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * 00018 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * 00019 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * 00020 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * 00021 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * 00022 * * 00023 * Except as contained in this notice, the name(s) of the above copyright * 00024 * holders shall not be used in advertising or otherwise to promote the * 00025 * sale, use or other dealings in this Software without prior written * 00026 * authorization. * 00027 ****************************************************************************/ 00028 00029 /**************************************************************************** 00030 * Author: Juergen Pfeifer, 1995,1997 * 00031 ****************************************************************************/ 00032 00033 #include "form.priv.h" 00034 00035 MODULE_ID("$Id: fld_user.c,v 1.15 2004/12/25 22:24:50 tom Exp $") 00036 00037 /*--------------------------------------------------------------------------- 00038 | Facility : libnform 00039 | Function : int set_field_userptr(FIELD *field, void *usrptr) 00040 | 00041 | Description : Set the pointer that is reserved in any field to store 00042 | application relevant informations 00043 | 00044 | Return Values : E_OK - on success 00045 +--------------------------------------------------------------------------*/ 00046 NCURSES_EXPORT(int) 00047 set_field_userptr(FIELD *field, void *usrptr) 00048 { 00049 T((T_CALLED("set_field_userptr(%p,%p)"), field, usrptr)); 00050 00051 Normalize_Field(field)->usrptr = usrptr; 00052 RETURN(E_OK); 00053 } 00054 00055 /*--------------------------------------------------------------------------- 00056 | Facility : libnform 00057 | Function : void *field_userptr(const FIELD *field) 00058 | 00059 | Description : Return the pointer that is reserved in any field to 00060 | store application relevant informations. 00061 | 00062 | Return Values : Value of pointer. If no such pointer has been set, 00063 | NULL is returned 00064 +--------------------------------------------------------------------------*/ 00065 NCURSES_EXPORT(void *) 00066 field_userptr(const FIELD *field) 00067 { 00068 T((T_CALLED("field_userptr(%p)"), field)); 00069 returnVoidPtr(Normalize_Field(field)->usrptr); 00070 } 00071 00072 /* fld_user.c ends here */