Introduction
An API (Application Programming Interface) is a set of commands, which interfaces the programs with
the processors. The most commonly used set of external procedures are those that make up Microsoft
Windows itself. The Windows API contains thousands of functions, structures, and constants that you can
declare and use in your projects. Those functions are written in the C language, however, so they must
be declared before you can use them. The declarations for DLL procedures can become fairly complex.
Specifically to C# it is more complex than VB. You can use API viewer tool to get API function
declaration but you have to keep in mind the type of parameter, which is different in C#.
Most of the advanced languages support API programming. The Microsoft Foundation Class Library
(MFC) framework encapsulates a large portion of the Win32 (API). ODBC API Functions are useful for
performing fast operations on database. With API your application can request lower-level services to
perform on computer's operating system. As API supports thousands of pieces functionality from simple
nessage boxes to encryption or remote computing; developers should know how to implement the API in their
program.
APIs have many types depending on OS, processor and functionality.
OS specific API:
Each operating system has common set of API's and some special ones
e.g.
Windows NT supports MS-DOS, Win16, Win32, POSIX
(Portable Operating System Interface), OS/2 console API; and Windows 95 supports MS-DOS,
Win16 and Win32 APIs.
Win16 & Win32 API:
Win16 is an API created for 16-bit processor and relies on 16 bit values. It has a
platform independent nature.
e.g. you can tie Win16 programs to MS-DOS feature like TSR programs.
Win32 is an API created for 32-bit processor and relies on 32 bit values. It is portable to any
operating system, a wide range of processors and is of a platform independent nature.
Win32 APIs has the '32' prefix after the library name e.g. KERNEL32, USER32 etc -
All APIs are implemented using 3 Libraries.
1. KERNEL
It is the library named KERNEL32.DLL, which supports capabilities
that are associated with the OS such as
- Process loading.
- Context switching.
- File I/O.
- Memory management.
e.g. The GlobalMemoryStatus
function obtains information about
the system's current usage of both physical and virtual memory
2. USER
This is the library named USER32.DLL in Win32.
This allows managing the entire user interfaces, such as
- Windows
- Menus
- Dialog Boxes
- Icons etc.,
e.g. The DrawIcon
function draws an icon or cursor into the
specified device context.
3. GDI (Graphical Device Interface
This is the library named "GDI32.dll" in Win32. It is Graphic output
library. Using GDI Windows draws windows, menus and dialog boxes.
- It can create Graphical Output.
- It can also use for storing graphical images.
e.g. The CreateBitmap
function creates a bitmap with the
specified width, height, and color format (color planes and
bits-per-pixel).
C# and API:
Implementing APIs in C# is a tough job for beginners. Before implementing API you should know how
to implement structure in C#, type conversion, safe/unsafe code, managed/unmanaged code and lots more.
Before implementing complex APIs we will start with simple MessageBox
API. To implement
code for the MessageBox
API open a new C# project and add one button. When button gets
clicked the code will display a Message Box.
Since we are using external library, add a namespace:
using System.Runtime.InteropServices;
Add the following lines to declare the API
[DllImport("User32.dll")]
public static extern int MessageBox(int h, string m, string c, int type);
Here the DllImport
attribute is used for calling the method from unmanaged code.
"User32.dll
" indicates the library name. The DllImport
attribute specifies
the dll location that contains the implementation of an extern
method. The
static
modifier is used to declare a static member, which belongs to the type itself
rather than to a specific object, extern
is used to indicate that the method is
implemented externally. A method that is decorated with the DllImport
attribute must
have the extern
modifier.
MessageBox
is the function name, which returns int
and takes 4
parameters as shown in declaration.
Many APIs use structures to pass and retrieve values, as it is less expensive. It also uses constant
data type for passing constant data and simple data types for passing built-in data types as seen in the
previous declaration of the MessageBox function.
Add following code for button click event:
protected void button1_Click(object sender, System.EventArgs e)
{
MessageBox (0,"API Message Box","API Demo",0);
}
Compile and run project, after clicking on the button you will see a MessageBox, which you called
using API the function!!!
Using Structures
Working with APIs, which use complex structures, or structures inside structures, is somewhat
more complex than using simple APIs. But once you understand the implementation then the whole API
world is yours.
In next example we will use GetSystemInfo
API which returns information
about the current system.
The first step is open a new C# form and add one button on it. Go to the code window of the form and
add a namespace:
using System.Runtime.InteropServices;
Declare the structure, which is the parameter of GetSystemInfo
.
[StructLayout(LayoutKind.Sequential)]
public struct SYSTEM_INFO {
public uint dwOemId;
public uint dwPageSize;
public uint lpMinimumApplicationAddress;
public uint lpMaximumApplicationAddress;
public uint dwActiveProcessorMask;
public uint dwNumberOfProcessors;
public uint dwProcessorType;
public uint dwAllocationGranularity;
public uint dwProcessorLevel;
public uint dwProcessorRevision;
}
Declare the API function:
[DllImport("kernel32")]
static extern void GetSystemInfo(ref SYSTEM_INFO pSI);
Where ref
is next to the method parameter keyword it causes a method to
refer to the same variable that was passed into the method.
Add the following code in the button click event in which we first create a struct object and then
pass it to function.
protected void button1_Click (object sender, System.EventArgs e)
{
try
{
SYSTEM_INFO pSI = new SYSTEM_INFO();
GetSystemInfo(ref pSI);
Once you retrieve the structure, perform operations on the required parameter
e.g.listBox1.InsertItem (0,pSI.dwActiveProcessorMask.ToString());
:
}
catch(Exception er)
{
MessageBox.Show (er.Message);
}
}
In the attached code I used two API's to retrieve various information from the
system.
Note
I used beta version 1.0 for creating sample application. In Beta 2, declaration of API functions
may be slightly different than 1.0.