X-Git-Url: http://www.lcore.org/git/lcore.git/blobdiff_plain/9763940f8849e5c807566157829a1e6d2c9172ee..8bc22a17b97149d69fd377f5e9f5ed617a4385db:/wmessages.pas

diff --git a/wmessages.pas b/wmessages.pas
index 205e79d..526eba5 100644
--- a/wmessages.pas
+++ b/wmessages.pas
@@ -5,7 +5,7 @@
       
 unit wmessages;
 //this unit contains various functions and types to make it easier to write
-//code that works with both real windows messages and lmessages
+//code that works with both real windows messages and lcoremessages
 
 interface
 uses windows,messages,pgtypes;
@@ -15,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;