imports the GetModuleHandleW function specifically : Windows API « Windows « C# / C Sharp






imports the GetModuleHandleW function specifically

   

using System;
using System.Runtime.InteropServices;

public class Starter {
    public static void Main() {
        int hProcess = API.GetModuleHandleW(null);
    }
}

public class API {
    [DllImport("kernel32.dll", ExactSpelling = true)]
    public static extern int GetModuleHandleW(string filename);
}

   
    
  








Related examples in the same category

1.DLL: GetVersionEx
2.Keyboard timer: GetTickCountKeyboard timer: GetTickCount
3.BitBlt
4.Get the Total Free Space on a Drive by using kernel32.dll
5.imports three functions to display the vertical and horizontal size of the screen.
6.MessageBox from user32.dll
7.Get OS Version from kernel32.dll
8.imports the printf function
9.import CreateDirectory and FormatMessage
10.marshals string for unmanaged memory as ANSI.
11.Set mouse and keyboard hooks.
12.Sound Utils
13.Returns the HRESULT associated with the given error code.