|
NAMEAG_Core —
agar core library initialization
SYNOPSIS#include <agar/core.h> DESCRIPTIONThe AgarAG_Core library implements the base Agar object
system along with portable interfaces to operating system services (e.g.,
filesystems, network, threads). Even though the Agar-GUI library is built on
top of it, AG_Core is an independent, general utility
library containing no GUI-related code.
For a complete listing of available subsystems and interfaces, see the “AGAR-CORE” section of the AG_Intro(3) manual page, or the SEE ALSO section below. INITIALIZATIONintAG_InitCore (const
char *progname, Uint
flags);
The Available flags options include:
The
The AGAR VERSION INFORMATIONvoidAG_GetVersion (AG_AgarVersion
*ver);
The typedef struct ag_agar_version { int major; int minor; int patch; const char *release; } AG_AgarVersion; Agar does not need to have been previously initialized for
The SEE ALSOAG_Config(3), AG_DataSource(3), AG_Db(3), AG_DSO(3), AG_Error(3), AG_Event(3), AG_EventLoop(3), AG_Execute(3), AG_File(3), AG_Intro(3), AG_Limits(3), AG_Net(3), AG_Object(3), AG_String(3), AG_TextElement(3), AG_Threads(3), AG_Time(3), AG_Timer(3), AG_User(3), AG_Variable(3), AG_Version(3)HISTORYTheAG_InitCore () function first appeared in Agar 1.0.
Visit the GSP FreeBSD Man Page Interface. |