Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
Delphi 10.2 Tokyo Professional
|
AW: Sysutils light?
19. Mai 2011, 11:16
Hi,
Delphi-Quellcode:
unit Classes;
{$R-,T-,X+,H+,B-}
{$IFDEF MSWINDOWS}
{ ACTIVEX.HPP is not required by CLASSES.HPP }
(*$NOINCLUDE ActiveX*)
{$ENDIF}
{$IFDEF LINUX}
{$DEFINE _WIN32}
{$ENDIF}
{$IFDEF MSWINDOWS}
{$DEFINE _WIN32}
{$ENDIF}
interface
{$IFDEF MSWINDOWS}
uses Windows, Messages, {--->} SysUtils {<---}, Variants, TypInfo, ActiveX;
Also ja.. Wenn du die Classes einbindest, wird auch die SysUtils eingebunden und daher auch mit in die Exe einkompiliert.
Michael "Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."
|
|
Zitat
|