SMI 0.9.9t (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News SMI 0.9.9t (Default branch)
# 1  
Old 03-07-2009
SMI 0.9.9t (Default branch)

ImageSMI (Services Maintenance Interventions) is acomplete free solution to manage services andtechnical support to customers with frontofficeand backoffice modules. It can manage contracts,asset tracking, repair orders, working time,rentals, tasks, subcontractors, and has many otherfunctionalities.License: GNU General Public License (GPL)Changes:
Work orders for subcontractors can now be "free" (i.e. not attached to a repair sheet). Customers can be grouped under a single account to allow just one code/password to follow multiple accounts. Times entered can be indexed depending on the hour of work (useful for works made out of normal working hours in a contract). Some Internet Explorer bugs were corrected.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
smi_event(3)						SMI Management Information Library					      smi_event(3)

NAME
smiGetEvent, smiGetFirstEvent, smiGetNextEvent - SMI identity information routines SYNOPSIS
#include <smi.h> smiGetEvent(SmiClass *smiClassPtr,char*"name); smiGetFirstEvent(SmiClass *smiClassPtr); smiGetNextEvent(SmiEvent *smiEventPtr); typedef struct SmiEvent { SmiIdentifier name; SmiDecl decl; SmiStatus status; char *description; char *reference; } SmiEvent; DESCRIPTION
These functions retrieve information on a SMIng event definition (SMIng). smiGetEvent(SmiClass *smiClassPtr, char *name) returns a pointer to struct SmiEvent for the event with the given name in the given class(smiClassPtr), or NULL if the event with the given name does not exist smiGetFirstEvent(SmiClass *smiClassPtr) and smiGetNextEvent(SmiEvent *smiEventPtr) are used to iterate through the events of the class given by smiClassPtr. They return a pointer to struct SmiEvent that represents an event or NULL if there are no events left in the class, or error has occurred. FILES
${prefix}/include/smi.h SMI library header file SEE ALSO
libsmi(3), smi_module(3), smi_class(3), smi.h AUTHOR
(C) 2007 Kaloyan Kanev, Jacobs University, Germany <k.kanev@jacobs-university.de> February 10, 2007 smi_event(3)