Skip to content
Snippets Groups Projects
Commit c3319ec5 authored by rswindell's avatar rswindell
Browse files

Fixed #include filenames for Unix compatibility (case sensitivity).

Added INFINITE definition (for Kylix compatibilty).
parent a457b0ff
No related branches found
No related tags found
No related merge requests found
...@@ -3,8 +3,13 @@ ...@@ -3,8 +3,13 @@
#ifndef TestThreadUnitH #ifndef TestThreadUnitH
#define TestThreadUnitH #define TestThreadUnitH
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#include <classes.hpp> #include <Classes.hpp>
#include <syncobjs.hpp> /* TEvent/TSimpleEvent */ #include <SyncObjs.hpp> /* TEvent/TSimpleEvent */
#if !defined(INFINITE) /* Missing in Kylix FT1 */
#define INFINITE -1
#endif
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
class TTestThread : public TThread class TTestThread : public TThread
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment