Metadata-Version: 2.5
Name: detoursdll
Version: 1.0.0
Summary: Microsoft's detours library made available to python
Project-URL: Homepage, https://github.com/pyhacks/detoursdll/
Author-email: pyhacks <enginyildirim111@gmail.com>
Keywords: C++,detours
Requires-Dist: rootwin
Description-Content-Type: text/markdown

# detoursdll
[rootwin](https://github.com/pyhacks/rootwin) is used to access [detours](https://github.com/microsoft/detours) from python strings containing C++ code.

# Installation
```pip install detoursdll```

# Usage
detoursdll.root_interface.**ProcessLine**(code)

You can find documentation about this function [here](https://github.com/pyhacks/rootwin#python-api)

# Example
```python
import detoursdll

detoursdll.root_interface.ProcessLine(b"""pyout << (void*)DetourTransactionBegin << "\\n"; """)

```
