Nytro Posted October 3, 2013 Report Posted October 3, 2013 Windows NT native API referenceExemplu:ZwQuerySystemInformation queries information about the system.NTSYSAPINTSTATUSNTAPIZwQuerySystemInformation(IN SYSTEM_INFORMATION_CLASS SystemInformationClass,IN OUT PVOID SystemInformation,IN ULONG SystemInformationLength,OUT PULONG ReturnLength OPTIONAL);ParametersSystemInformationClassThe type of system information to be queried.The permitted values are a subset ofthe enumeration SYSTEM_INFORMATION_CLASS, described in the following section.SystemInformationPoints to a caller-allocated buffer or variable that receives the requested systeminformation.SystemInformationLengthThe size in bytes of SystemInformation, which the caller should set according to thegiven SystemInformationClass.ReturnLengthOptionally points to a variable that receives the number of bytes actually returned toSystemInformation; if SystemInformationLength is too small to contain the availableinformation, the variable is normally set to zero except for two information classes(6 and 11) when it is set to the number of bytes required for the available information.If this information is not needed, ReturnLength may be a null pointer.Download:multi-desktop-manager.googlecode.com/files/NativeAPI.pdf Quote