/* This Source Code Form is subject to the terms of the Mozilla Public *License,v.2.0.IfacopyoftheMPLwasnotdistributedwiththis
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* All components participating in the PR version protocol must expose *astructureandafunction.Thestructureisdefinedbelowandnamed *accordingtothenamingconventionsoutlinedfurtherbelow.Thefunction *iscalledlibVersionPointandreturnsapointertothisstructure.
*/
/* on NT, always pack the structure the same. */ #ifdef _WIN32 #pragmapack(push, 8) #endif
/* for Version 2, this is the body format. */
PRInt64 buildTime; /* 64 bits - usecs since midnight, 1/1/1970 */ char * buildTimeString;/* a human readable version of the time */
PRUint8 vMajor; /* Major version of this component */
PRUint8 vMinor; /* Minor version of this component */
PRUint8 vPatch; /* Patch level of this component */
PRBool beta; /* true if this is a beta component */
PRBool debug; /* true if this is a debug component */
PRBool special; /* true if this component is a special build */
char * filename; /* The original filename */ char * description; /* description of this component */ char * security; /* level of security in this component */ char * copyright; /* The copyright for this file */ char * comment; /* free form field for misc usage */ char * specialString; /* the special variant for this build */
} PRVersionDescription;
/* on NT, restore the previous packing */ #ifdef _WIN32 #pragmapack(pop) #endif
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.