mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-22 01:02:17 -05:00
ScriptManager: Fix threads on UNIX
This commit is contained in:
parent
79152c88ed
commit
4b5f7d0305
@ -3,9 +3,9 @@ program project1;
|
|||||||
{$mode objfpc}{$H+}
|
{$mode objfpc}{$H+}
|
||||||
|
|
||||||
uses
|
uses
|
||||||
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
{$IFDEF UNIX}
|
||||||
cthreads,
|
cthreads, cmem,
|
||||||
{$ENDIF}{$ENDIF}
|
{$ENDIF}
|
||||||
Interfaces, // this includes the LCL widgetset
|
Interfaces, // this includes the LCL widgetset
|
||||||
Forms, scriptmanager
|
Forms, scriptmanager
|
||||||
{ you can add units after this };
|
{ you can add units after this };
|
||||||
|
@ -28,8 +28,10 @@ unit scriptmanager;
|
|||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
|
{$IFDEF UNIX}cthreads,cmem,{$ENDIF} Classes, SysUtils, FileUtil, Forms,
|
||||||
ExtCtrls, ComCtrls, ActnList, Menus, settings, updater,strutils, MufasaTypes,dom;
|
Controls, Graphics, Dialogs, StdCtrls,
|
||||||
|
ExtCtrls, ComCtrls, ActnList, Menus, settings, updater,strutils, MufasaTypes,
|
||||||
|
dom;
|
||||||
|
|
||||||
type
|
type
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user