X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=menu%2Fm_items.c;h=a539fddd3d1d2c526f7bc85501bff2a6527357a9;hp=539768551d80cff8612d7256eb73f6d2dfcae245;hb=d6c65d287166c3105ece4a5e3f3ec7af5a5f26a3;hpb=c6540b9c89dda1a6a8bd681726831e8924176504 diff --git a/menu/m_items.c b/menu/m_items.c index 53976855..a539fddd 100644 --- a/menu/m_items.c +++ b/menu/m_items.c @@ -1,5 +1,6 @@ /**************************************************************************** - * Copyright (c) 1998-2005,2010 Free Software Foundation, Inc. * + * Copyright 2020 Thomas E. Dickey * + * Copyright 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 * @@ -37,7 +38,7 @@ #include "menu.priv.h" -MODULE_ID("$Id: m_items.c,v 1.17 2010/01/23 21:20:10 tom Exp $") +MODULE_ID("$Id: m_items.c,v 1.19 2020/05/24 01:40:20 anonymous.maarten Exp $") /*--------------------------------------------------------------------------- | Facility : libnmenu @@ -52,7 +53,7 @@ MODULE_ID("$Id: m_items.c,v 1.17 2010/01/23 21:20:10 tom Exp $") | E_BAD_ARGUMENT - An incorrect menu or item array was | passed to the function +--------------------------------------------------------------------------*/ -NCURSES_EXPORT(int) +MENU_EXPORT(int) set_menu_items(MENU * menu, ITEM ** items) { T((T_CALLED("set_menu_items(%p,%p)"), (void *)menu, (void *)items)); @@ -84,7 +85,7 @@ set_menu_items(MENU * menu, ITEM ** items) | | Return Values : NULL on error +--------------------------------------------------------------------------*/ -NCURSES_EXPORT(ITEM **) +MENU_EXPORT(ITEM **) menu_items(const MENU * menu) { T((T_CALLED("menu_items(%p)"), (const void *)menu)); @@ -100,7 +101,7 @@ menu_items(const MENU * menu) | | Return Values : Number of items or -1 to indicate error. +--------------------------------------------------------------------------*/ -NCURSES_EXPORT(int) +MENU_EXPORT(int) item_count(const MENU * menu) { T((T_CALLED("item_count(%p)"), (const void *)menu));