X-Git-Url: http://www.lcore.org/git/lcore.git/blobdiff_plain/1a863b8d4ef10ffb7424401ef65a39e3090f41a9..070ae4ab75671d43ff36f02f9773c3a23c2bd345:/dnswin.pas diff --git a/dnswin.pas b/dnswin.pas index 567ea68..17a8a97 100644 --- a/dnswin.pas +++ b/dnswin.pas @@ -39,6 +39,8 @@ type end; +procedure init; + implementation uses { zipplet: moved pgtypes to interface because it's needed for the string definitions } @@ -330,6 +332,7 @@ var hbrBackground : 0; lpszMenuName : nil; lpszClassName : 'dnswinClass'); +procedure init; begin if Windows.RegisterClass(MyWindowClass) = 0 then halt; @@ -346,4 +349,7 @@ begin nil); { CreateParam } //writeln('dnswin hwnd is ',hwnddnswin); //writeln('last error is ',GetLastError); +end; + + end.