Ejemplo n.º 1
0
pcomponent * __init
ArcGetParent(pcomponent *Current)
{
	if (Current == PROM_NULL_COMPONENT)
		return PROM_NULL_COMPONENT;

	return (pcomponent *) ARC_CALL1(parent_component, Current);
}
Ejemplo n.º 2
0
DISPLAY_STATUS * __init ArcGetDisplayStatus(ULONG FileID)
{
	return (DISPLAY_STATUS *) ARC_CALL1(GetDisplayStatus, FileID);
}
Ejemplo n.º 3
0
pcomponent * __init
ArcGetComponent(CHAR *Path)
{
	return (pcomponent *)ARC_CALL1(component_by_path, Path);
}
Ejemplo n.º 4
0
LONG __init
ArcDeleteComponent(pcomponent *ComponentToDelete)
{
	return ARC_CALL1(comp_del, ComponentToDelete);
}
Ejemplo n.º 5
0
pcomponent * __init
ArcGetChild(pcomponent *Current)
{
	return (pcomponent *) ARC_CALL1(child_component, Current);
}
Ejemplo n.º 6
0
LONG
ArcGetReadStatus(ULONG FileID)
{
	return ARC_CALL1(get_rstatus, FileID);
}
Ejemplo n.º 7
0
LONG
ArcClose(ULONG FileID)
{
	return ARC_CALL1(close, FileID);
}
Ejemplo n.º 8
0
struct linux_mdesc * __init ArcGetMemoryDescriptor(struct linux_mdesc *Current)
{
	return (struct linux_mdesc *) ARC_CALL1(get_mdesc, Current);
}
Ejemplo n.º 9
0
PCHAR __init
ArcGetEnvironmentVariable(CHAR *name)
{
    return (CHAR *) ARC_CALL1(get_evar, name);
}