X-Git-Url: http://www.lcore.org/git/lcore.git/blobdiff_plain/4782a5c5afee47721cc617daa40dd29828342c2b..170e475daffeb198914a020e26afaf803a6f9608:/lmessages.pas?ds=sidebyside diff --git a/lmessages.pas b/lmessages.pas index 7bb73fd..1302e29 100755 --- a/lmessages.pas +++ b/lmessages.pas @@ -1,3 +1,13 @@ +{ 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 + ----------------------------------------------------------------------------- } + +//this unit provides a rough approximation of windows messages on linux +//it is usefull for multithreaded applications on linux to communicate back to +//the main lcore thread +//This unit is *nix only, on windows you should use the real thing + unit lmessages; //windows messages like system based on lcore tasks interface @@ -84,7 +94,7 @@ procedure init; implementation uses - baseunix,unix,lcore;//,safewriteln; + baseunix,unix,lcore,unixutil;//,safewriteln; {$i unixstuff.inc} type @@ -653,4 +663,4 @@ begin end; end; -end. \ No newline at end of file +end.