marshals string for unmanaged memory as ANSI. : Windows API « Windows « C# / C Sharp






marshals string for unmanaged memory as ANSI.

   

using System;
using System.Runtime.InteropServices;

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

public class API {
    [DllImport("kernel32.dll", CharSet = CharSet.Ansi)]
    public static extern int GetModuleHandle(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.imports the GetModuleHandleW function specifically
11.Set mouse and keyboard hooks.
12.Sound Utils
13.Returns the HRESULT associated with the given error code.