diversenok / NtUtilsLibrary

Delphi library for system programming on Windows using Native API
MIT License
106 stars 33 forks source link

Delphi 7 #5

Closed XUnderShadow closed 3 years ago

XUnderShadow commented 3 years ago

Can this work on Delphi 7?

diversenok commented 3 years ago

The main functionality - definitely no; it uses lots of features that appeared later (generics, anonymous functions, RTTI, etc.). It should be possible to reuse most of the definitions from the headers by removing all custom attributes and a few other things; however, the rest of the library relies too heavily on generic interfaces (which power automatic memory management for it).

Alternatively, you can get a free Community Edition of Delphi 10.3.3 that includes all these features here: https://www.embarcadero.com/products/delphi/starter

XUnderShadow commented 3 years ago

ok Thanks