GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
init_menu(3) Allegro manual init_menu(3)

init_menu - Low level initialisation of a menu. Allegro game programming library.

#include <allegro.h>

MENU_PLAYER *init_menu(MENU *menu, int x, int y);

This function provides lower level access to the same functionality as do_menu(), but allows you to combine a popup menu with your own program control structures. It initialises a menu, returning a pointer to a menu player object that can be used with update_menu() and shutdown_menu(). With these functions, you could implement your own version of do_menu() with the lines:

   MENU_PLAYER *player = init_menu(menu, x, y);
   
   while (update_menu(player))
      ;
   
   return shutdown_menu(player);

update_menu(3), shutdown_menu(3), do_menu(3)
version 4.4.3 Allegro

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.