
By MS
Описание интерфейса home windows 2000 local API. Описываются наборы функций Zw*, Nt* и Ki* которые практически недокументированы или вообще недокументированы в MSDN
Read or Download Windows 2000 Native API reference PDF
Best windows desktop books
Adobe Encore DVD 1.5 for Windows
Delivering adequate templates, shapes, and improvements so that you can create menus with no turning to Photoshop, the enhanced Library and kinds palettes in Encore DVD 1. five signify only one of many purposes DVD creators like your self are flocking to Adobe's lately up to date authoring software program. This no-nonsense advisor bargains the main useful method of having educated in it!
Professional Windows Live programming
*Windows dwell is the collective identify for a gaggle of Microsoft instruments whose companies and person information can be found anywhere-without ever having to put in an program *Windows dwell at present includes: home windows dwell Mail, home windows reside defense middle, home windows stay Favorites, home windows stay OneCare, home windows dwell Messenger, home windows dwell seek, and home windows stay neighborhood *Certified Microsoft software program Developer Jon Arking stocks his adventure in constructing for home windows stay, and teaches readers how one can construct purposes that embody the home windows stay platform *Packed with examples, this hands-on consultant deals an insightful examine the instruments and applied sciences at the back of home windows reside, utilizing the MSN actions APIs, construction mapping functions with digital Earth APIs, and constructing contraptions for either on-line and home windows Vista *Also examines integrating MSN seek functions in addition to stay prone into current websites with reside customized domain names
The second one variation of this bestselling advisor covers the following iteration Phoenix BIOS, utilized in significant computer appropriate, EISA, and 486-based pcs. someone constructing software program for those machines wishes this crucial details
The Craft of Windows 95™ Interface Design: Click Here to Begin
Sturdy software program interface layout is as the most important to a product's luck as is its performance. With the provision of visible improvement instruments comparable to visible simple and visible C++, a growing number of builders of purposes might want to comprehend and use rules of fine interface layout. This ebook might help advisor the reader to a greater knowing of the way to make home windows software program easy to navigate and a excitement to take advantage of.
- Easy Microsoft Windows 7
- Oracle Solaris 10 System Virtualization Essentials: , Portable Documents (Oracle Solaris System Administration Series)
- MCSE Windows 2000 Network Infrastructure Exam Cram 2 (Exam Cram 70-216)
- Leveraging WMI Scripting: Using Windows Management Instrumentation to Solve Windows Management Problems (HP Technologies)
- Windows Server® 2008 Terminal Services Resource Kit
Extra info for Windows 2000 Native API reference
Sample text
Tag The four character tag string identifying the contents of the pool allocation. Remarks Information class 14 returns data on the paged pool and information class 15 returns data on the nonpaged pool. The paged and nonpaged pools reported on by these information classes are only available to kernel mode code. The use of pool memory is documented in the DDK. SystemMemoryUsageInformation typedef struct _SYSTEM_MEMORY_USAGE_INFORMATION { // Info Classes 25 and 29 ULONG Reserved; PVOID EndOfData; SYSTEM_MEMORY_USAGE MemoryUsage[1]; } SYSTEM_MEMORY_USAGE_INFORMATION, *PSYSTEM_MEMORY_USAGE_INFORMATION; typedef struct _SYSTEM_MEMORY_USAGE { PVOID Name; USHORT Valid; USHORT Standby; USHORT Modified; USHORT PageTables; } SYSTEM_MEMORY_USAGE, *PSYSTEM_MEMORY_USAGE; 41 1996 CH01 11/19/99 12:24 PM Page 42 42 System Information and Control: SystemMemoryUsageInformation Members EndOfData A pointer to the end of the valid data in the SystemInformation buffer.
ZwCreateXxx OBJECT_ATTRIBUTES typedef struct _OBJECT_ATTRIBUTES { ULONG Length; HANDLE RootDirectory; PUNICODE_STRING ObjectName; ULONG Attributes; PSECURITY_DESCRIPTOR SecurityDescriptor; PSECURITY_QUALITY_OF_SERVICE SecurityQualityOfService; } OBJECT_ATTRIBUTES, *POBJECT_ATTRIBUTES; Members Length The size in bytes of the OBJECT_ATTRIBUTES structure. The ObjectName will be interpreted as a name relative to this container. Possible “container” object types include Object Directories, File Directories, and Registry Keys.
1996 CH01 11/19/99 12:24 PM Page 49 System Information and Control: ZwSetSystemEnvironmentValue ReturnLength Optionally points to a variable that receives the number of bytes actually returned to Value. If ValueLength is too small to contain the available data, the variable is set to the number of bytes required for the available data. If this information is not needed by the caller, ReturnLength may be specified as a null pointer. Return Value Returns STATUS_SUCCESS or an error status, such as STATUS_PRIVILEGE_NOT_HELD, STATUS_BUFFER_OVERFLOW, or STATUS_UNSUCCESSFUL.