c++ Programming Glossary: injection
Interfaces vs Templates for dependency injection in C++ http://stackoverflow.com/questions/1127918/interfaces-vs-templates-for-dependency-injection-in-c vs Templates for dependency injection in C To be able to unit test my C code I usually pass the constructor.. production code or fake mock objects let's call these injection objects . I have done this either by Creating an interface that.. under test a template class that takes the types of the injection objects as template parameters and instances of the injection..
Why are redundant class name qualifiers allowed? http://stackoverflow.com/questions/11423380/why-are-redundant-class-name-qualifiers-allowed the phenomenon can probably be attributed to class name injection as noted in ephemient's answer for this specific example it..
C++ Dll Injection http://stackoverflow.com/questions/1777526/c-dll-injection you for your patience help is appreciated. c dll process injection share improve this question You don't have to write a DLL..
Hooking DirectX EndScene from an injected DLL http://stackoverflow.com/questions/1994676/hooking-directx-endscene-from-an-injected-dll it via CreateRemoteThread . c directx hook hacking dll injection share improve this question You install a system wide hook...
Is there an API for Wireshark, to develop programs/plugins that interact with it/enhance it? http://stackoverflow.com/questions/2198972/is-there-an-api-for-wireshark-to-develop-programs-plugins-that-interact-with-it ways to receive packets but I want to implement packet injection into Wireshark. Sniffing will be an important part of my project.. I'm not sure that the suggested solution allows for packet injection. c python api wireshark packet sniffers share improve this..
Loading a dll from a dll? http://stackoverflow.com/questions/2674736/loading-a-dll-from-a-dll not loaded LoadLibrary fails . Addendum 2 Positive on injection with CreateRemoteThread if you wanna know. Only on Linux and..
Advice on Mocking System Calls http://stackoverflow.com/questions/2924440/advice-on-mocking-system-calls production code if you aren't already setup for dependency injection. Option 2 Use a link seam In C you also have link time seams..
Dependency injection in C++ http://stackoverflow.com/questions/352885/dependency-injection-in-c injection in C This is also a question that I asked in a comment in one.. Hevery's google talks that was dealing with dependency injection but it got buried in the comments. I wonder how can the factory.. What is your preferred approach c unit testing dependency injection share improve this question This talk is about Java and..
How does SysInternal's ProcessMonitor work? http://stackoverflow.com/questions/4833972/how-does-sysinternals-processmonitor-work to write my own one I know they've used some sort of dll injection API hooking but i'm unsure how they reached all the kernel mode..
Protecting executable from reverse engineering? http://stackoverflow.com/questions/6481668/protecting-executable-from-reverse-engineering Some of the things I've thought of so far are Code injection calling dummy functions before and after actual function calls..
|