Discuss DLL Injection in the Other Programming Languages forum on Dev Shed. DLL Injection A place for discussing programming languages not covered in specific forums such as Assembler, COBOL, etc. - you get the idea.
Posts: 5,538
Time spent in forums: 1 Month 3 Weeks 1 Day 19 h 30 m 28 sec
Reputation Power: 1050
It's where you write a DLL or SO in another language and then load it at runtime into another program. You're a pascal guy, right? Well pascal lacks some functions available in other languages (often api-specific functions). So you package them up into a library and load them through your favourite language. SOs and DLLs (SO = for linux, unix and bsd; DLL = for windows). They're mainly written in C and C++.
Posts: 165
Time spent in forums: 1 Day 5 h 59 m 35 sec
Reputation Power: 17
Yeah, I do alot of pascal but I am looking into C++ more and more now just because, as you say, pascal lacks some things (although I like its simplicity). Thx for the answer.