X-Git-Url: http://www.lcore.org/git/lcore.git/blobdiff_plain/5131f0f4f11d06c8d638c798dc1445fa52092510..309429a3acfa50bd4e928b8a5728dc863e9c767b:/wmessages.pas?ds=inline

diff --git a/wmessages.pas b/wmessages.pas
index 4574d98..526eba5 100644
--- a/wmessages.pas
+++ b/wmessages.pas
@@ -4,8 +4,8 @@
   ----------------------------------------------------------------------------- } 
       
 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;
@@ -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;