In Delphi:
Delphi-Quellcode:
var
ws: WideString;
begin
ws := '
....';
MessageBoxW(
Handle, PWideChar(ws), PWideChar(ws), 0);
Du musst den WideString nach LPCWSTR casten und das entspricht einem PWideChar in Delphi:
WinUser.h:
Code:
int
WINAPI
MessageBoxW(
__in_opt HWND hWnd,
__in_opt LPCWSTR lpText,
__in_opt LPCWSTR lpCaption,
__in UINT uType);