Test.cs 374 B

1234567891011121314
  1. using System;
  2. using System.Runtime.InteropServices;
  3. public class Test
  4. {
  5. [DllImport ("user32.dll", CallingConvention = CallingConvention.StdCall, CharSet = CharSet.Auto)]
  6. public static extern int MessageBoxA (int hWnd, string pText, string pCaption, int uType);
  7. static public void Main()
  8. {
  9. MessageBoxA(0, "Calling winelib from Mono", "TEST", 0);
  10. }
  11. }