03-12-2010
All registered people can give awards. The button is on the top right of every post, to the left of the infraction icon (or the reporting icon, depending on your view). It looks like a Japanese Yen coin.
6 More Discussions You Might Find Interesting
1. Post Here to Contact Site Administrators and Moderators
Hi all,
I've just now wanted to award 1000 Bits to following posting and I noticed there is no "coin"/award button anymore :confused:
Regards,
pc
EDIT: I guess it's turned off since we now have this Thanks button? (2 Replies)
Discussion started by: pseudocoder
2 Replies
2. What is on Your Mind?
Ten movies have been nominated as best motion picture by the International Press Academy, presentation of the 2012 Satellite Awards will be held on 16th December at Los Angeles, CA.
Place your bits here on one of the below nominated movie of your choice:-
Argo
... (0 Replies)
Discussion started by: Yoda
0 Replies
3. What is on Your Mind?
2013 Golden Globe Awards
The contenders for this year's Golden Globes Awards, celebrating the best in film and television as voted for by the Hollywood Foreign Press Association, have been announced in Los Angeles.The awards take place on Sunday 13 January.
Please place your bits here on... (0 Replies)
Discussion started by: Yoda
0 Replies
4. What is on Your Mind?
2013 Academy Awards
The nominees for the 2013 Academy Awards have been revealed in Los Angeles.
The ceremony will take place at the Dolby Theatre in Hollywood, Los Angeles on 24th February.
Best film
Amour
Argo
Beasts Of The Southern Wild
Django Unchained
Les Miserables... (0 Replies)
Discussion started by: Yoda
0 Replies
5. What is on Your Mind?
2013 Laureus World Sports Awards
The Laureus World Sports Awards are awarded annually to sportspeople who have been outstanding during the previous year.
The 2013 Laureus World Sports Awards, the premier honours event in the sporting calendar, are to be held in Rio de Janeiro on March 11.
... (0 Replies)
Discussion started by: Yoda
0 Replies
6. What is on Your Mind?
Happy New Year!
There are currently four UNIX.COM achievement awards up for grabs, as the say. Here they are, in no particular order:
The Order of the Raven
The Order of the Hippo
The Order of the Spider
The Order of the Dragon
Don't ask me what they mean, or who who will get those... (0 Replies)
Discussion started by: Neo
0 Replies
LEARN ABOUT HPUX
xgeticonname
XGetIconName() XGetIconName()
Name
XGetIconName - get the name to be displayed in an icon.
Synopsis
Status XGetIconName(display, w, icon_name_return)
Display *display;
Window w;
char **icon_name_return;
Arguments
display Specifies a connection to an X server; returned from XOpenDisplay().
w Specifies the ID of the window whose icon name you want to learn.
icon_name_return
Returns a pointer to the name to be displayed in the window's icon. The name is a NULL-terminated string. If the data returned
by the server is in the Latin Portable Character Encoding, then the returned string is in the Host Portable Character Encoding.
Otherwise, the result is implementation-dependent. If a name hasn't been assigned to the window, XGetIconName() sets this argu-
ment to NULL. When finished with it, a client must free the icon name string using XFree().
Returns
Zero on failure, non-zero on success.
Description
XGetIconName() is superseded by XGetWMIconName() in Release 4. XGetIconName() reads the icon name property of a window. This function is
primarily used by window managers to get the name to be written in a window's icon when they need to display that icon. XGetIconName()
returns a non-zero Status if it succeeds, and zero if no icon name has been set for the argument window.
For more information, see Volume One, Chapter 12, Interclient Communication.
Errors
BadWindow
See Also
XFetchName(), XGetClassHint(), XGetIconSizes(), XGetNormalHints(), XGetSizeHints(), XGetTransientForHint(), XGetWMHints(), XGetZoomHints(),
XSetClassHint(), XSetCommand(), XSetIconName(), XSetIconSizes(), XSetNormalHints(), XSetSizeHints(), XSetTransientForHint(), XSetWMHints(),
XSetZoomHints(), XStoreName().
Xlib - Window Manager Hints XGetIconName()