Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can we call Native Windows API from Delphi?

Is it possible to call the kernel Native APIs from within a Delphi application? Like nt and zw syscalls.

like image 717
n1kita Avatar asked Feb 17 '13 12:02

n1kita


1 Answers

You can indeed call the native API from Delphi.

Delphi does not ship with header translations for the native API. So you need to provide your own, or use a pre-existing translation. For example. the JEDI translation of the NT API.

like image 106
David Heffernan Avatar answered Sep 22 '22 00:09

David Heffernan