how to find the equivalent delphi function of the c++ functions in msdn -




the microsoft developer network msdn full of useful documented functions necessity learn , stay updated windows app developer.

for example shellexecute function in here documented (translated below embarcadero technologies).

function shellexecute; external shell32 name 'shellexecutew'; 

however language used explain functions c/c++ (not complaining or thing).

to find equivalent these functions (if exist or not question) can hard.

for example i'm looking equivalent of function:

dword createipnetentry(   _in_ pmib_ipnetrow parpentry ); 

now pointless come , ask here can find equivalent each time stuck.so question is:

is there way know if there equivalent/translation c++ functions @ msdn in delphi , find them(the unit)?

you can find whether or not particular api function has been translated searching delphi source folder it.

any search in files tool serve necessary purpose, including built-in find in files.





wiki

Comments

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -

python - Read npy file directly from S3 StreamingBody -