Sponsored Content
Full Discussion: OS6100-04-01-0944 ???
Operating Systems AIX OS6100-04-01-0944 ??? Post 302530600 by 300zxmuro on Tuesday 14th of June 2011 11:54:23 AM
Old 06-14-2011
MySQL OS6100-04-01-0944 ???

Hi, can you help explaining what all this means?


OS6100-04-01-0944

I guess the version is 6.1, what are the other numbers?

How can I find what is the latest version of AIX 6?

I was told to upgrade this server to the latest version of 6.

Thanks!
 

We Also Found This Discussion For You

1. AIX

From 6100-04-01-0944 to 6100-07-02-1150 ...HOW?

Any information will be appreciated.:wall: (2 Replies)
Discussion started by: 300zxmuro
2 Replies
extract_font_range(3alleg4)					  Allegro manual				       extract_font_range(3alleg4)

NAME
extract_font_range - Extracts a range of characters from a font. Allegro game programming library. SYNOPSIS
#include <allegro.h> FONT *extract_font_range(FONT *f, int begin, int end) DESCRIPTION
This function extracts a character range from a font and returns a new font that contains only the range of characters selected by this function. You can pass -1 for either the lower or upper bound if you want to select all characters from the start or to the end of the font. Example: FONT *myfont; FONT *capitals; FONT *fontcopy; ... /* Create a font of only capital letters */ capitals = extract_font_range(myfont, 'A', 'Z'); /* Create a copy of the font */ fontcopy = extract_font_range(myfont, -1, -1); ... destroy_font(capitals); destroy_font(fontcopy); RETURN VALUE
Returns a pointer to the new font or NULL on error. Remember that you are responsible for destroying the font when you are finished with it to avoid memory leaks. SEE ALSO
get_font_range_begin(3alleg4), get_font_range_end(3alleg4), merge_fonts(3alleg4), transpose_font(3alleg4), exfont(3alleg4) Allegro version 4.4.2 extract_font_range(3alleg4)
All times are GMT -4. The time now is 07:10 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy