The Win32 Wrapper

Introduction

NetXP has one of the world's most comprehensive Win32 wrappers for .NET. This wrapper is found in the assembly called NETXP.Win32.dll. It contains the declarations of some 1600 API functions.

Usage

The NETXP.Win32.API class contains everything in the wrapper. Everything in the API class has the same name as its Win32 API correspondent. For example, to call CreateWindow, you would call NETXP.Win32.API.CreateWindow. All constants and structs are also declared in the API class.

Why Use It?

Why use the NetXP Win32 wrapper, rather than declare the APIs yourself, as you need them? The answer is simple: it's faster! Using the pre-declared APIs in the NetXP Win32 wrapper is not only easier but also less error-prone. All of the APIs declared in the Win32 wrapper are guaranteed to be error-free.