MessageBoxTimeout

[DllImport("user32.dll", SetLastError = true)]
public static extern int MessageBoxTimeout(
   IntPtr hWnd,
   string lpText,
   string lpCaption,
   uint uType,
   ushort wLanguageId,
   uint dwMilliseconds
);

Last updated