Sponsored Content
Full Discussion: new_item ??!!
Top Forums Programming new_item ??!! Post 302096597 by !_30 on Thursday 16th of November 2006 12:49:03 PM
Old 11-16-2006
PHP new_item ??!!

I have the folowing structure..

struct usr
{
char user[256];
}

struct usr live[50]; /* array of structure */
live[1].user="something";
live[2].user="anithing";
...
live[9].user="end";

I am using menu library from ncurses :

and I want to items for the panel :
Code:
ITEM **my_items;

        my_items = (ITEM **)calloc(9, sizeof(ITEM *));
        for(i = 0; i < 9; ++i)
        my_items[i] = new_item( live[i].user , "USER" );


I have a real problem with live[i].user , I encountur a lot of errors .. what is wrong ??? Smilie
 
menu_item_new(3CURSES)					     Curses Library Functions					    menu_item_new(3CURSES)

NAME
menu_item_new, new_item, free_item - create and destroy menus items SYNOPSIS
cc [ flag... ] file... -lmenu -lcurses [ library... ] #include <menu.h> ITEM *new_item(char *name, char *desc); int free_item(ITEM *item); DESCRIPTION
new_item() creates a new item from name and description, and returns a pointer to the new item. free_item() frees the storage allocated for item. Once an item is freed, the user can no longer connect it to a menu. RETURN VALUES
new_item() returns NULL on error. free_item() returns one of the following: E_OK The routine returned successfully. E_SYSTEM_ERROR System error. E_BAD_ARGUMENT An incorrect argument was passed to the routine. E_CONNECTED One or more items are already connected to another menu. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |MT-Level |Unsafe | +-----------------------------+-----------------------------+ SEE ALSO
curses(3CURSES), menus(3CURSES), attributes(5) NOTES
The header <menu.h> automatically includes the headers <eti.h> and <curses.h>. SunOS 5.11 31 Dec 1996 menu_item_new(3CURSES)
All times are GMT -4. The time now is 06:31 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy