/** * @file types.idl * @author Michal Sojka * @date Sun Oct 12 17:12:30 2008 * * @brief Types used internally by FORB. * * */ module forb { /** * Object key for distinguishing different objects in a FORB. */ typedef long long object_key; typedef char uuid[8]; /** * Server ID for identifying different FORBs. * * The ID is based on universal unique identifiers (UUID). */ struct server_id { uuid uuid; }; };