Difference between revisions of "ObjectType:system"

From Lavish Software Wiki
Jump to navigation Jump to search
Line 7: Line 7:
 
*[[DataType:string|string]] '''OSBuild''': Operating system build identifier (e.g. 2600.xpsp_sp2_rtm040803-2158)
 
*[[DataType:string|string]] '''OSBuild''': Operating system build identifier (e.g. 2600.xpsp_sp2_rtm040803-2158)
 
*[[DataType:int|int]] '''GetProcAddress['''module''','''function''']''': Retrieves the address of an exported function, usually in a DLL. (Level of understanding: High)
 
*[[DataType:int|int]] '''GetProcAddress['''module''','''function''']''': Retrieves the address of an exported function, usually in a DLL. (Level of understanding: High)
 +
*[[DataType:int|int]] '''TickCount''': A timestamp given in milliseconds.  This value does "wrap" every 46 days or so.
  
 
== Methods ==
 
== Methods ==

Revision as of 22:53, 4 May 2005

Description

Members

  • string OS: Operating system identifier (e.g. Microsoft Windows XP)
  • int MemFree: Amount of free physical system RAM, in megabytes
  • int MemTotal: Total amount of physical system RAM, in megabytes
  • string OSBuild: Operating system build identifier (e.g. 2600.xpsp_sp2_rtm040803-2158)
  • int GetProcAddress[module,function]: Retrieves the address of an exported function, usually in a DLL. (Level of understanding: High)
  • int TickCount: A timestamp given in milliseconds. This value does "wrap" every 46 days or so.

Methods

Returns

Same as OS

Examples

See Also