X-Git-Url: http://www.lcore.org/git/lcore.git/blobdiff_plain/0cf8242b7bb005541896b8ab6363b147ff22f454..a77cd534c22418ec9a8a22ae42efef1a9500b193:/wmessages.pas?ds=sidebyside diff --git a/wmessages.pas b/wmessages.pas index fed9259..526eba5 100644 --- a/wmessages.pas +++ b/wmessages.pas @@ -1,6 +1,11 @@ +{ Copyright (C) 2005 Bas Steendijk and Peter Green + For conditions of distribution and use, see copyright notice in zlib_license.txt + which is included in the package + ----------------------------------------------------------------------------- } + unit wmessages; -//this unit contains varions functions and types to make it easier to write -//code that works with both real windows messages and lmessages +//this unit contains various functions and types to make it easier to write +//code that works with both real windows messages and lcoremessages interface uses windows,messages,pgtypes; @@ -10,7 +15,7 @@ type //according to MS you are supposed to use get/setwindowlongptr to get/set //pointers in extra window memory so your program can be built for win64, this -//is also the only interface to window memory that lmessages offers but delphi +//is also the only interface to window memory that lcoremessages offers but delphi //doesn't define it so alias it to getwindowlong here for win32. {$ifndef win64} //future proofing ;) function getwindowlongptr(ahwnd:hwnd;nindex:integer) : taddrint;