Exemplo n.º 1
0
ULONG SAVEDS STDARGS LC_BUILDNAME(L_InitLib) (LC_LIBHEADERTYPEPTR lh)
{
    ULONG result;
    
    //SysBase = sysbase;
    
    D(bug("Inside initfunc of text.datatype\n"));

    if (__UserLibInit((struct Library *)lh) == 0)
    {
        result = TRUE;
    } else {
        result = FALSE;
    }
    
    D(bug("Leaving initfunc of text.datatype. result = %d\n", result));
    
    return result;
}
Exemplo n.º 2
0
static int AROS__UserLibInit(struct PopupMenuBase *PopupMenuBase)
{
    return (__UserLibInit(PopupMenuBase) == 0) ? TRUE : FALSE;
}