diff --git a/README.md b/README.md index 1cbb278..45a43d3 100644 --- a/README.md +++ b/README.md @@ -23,18 +23,18 @@ hook::make_hook(&fopen, &hook_test); `hook::get_func` is templated so that you can pass a function pointer I.E `&fopen` and the returned pointer will be of that type. -``` +```cpp return hook::get_func(&fopen)(filename, open_type); // returned value is of type: FILE* (*)(const char*, const char*); ``` ### Disable Hook -``` +```cpp hook::disable(&fopen); ``` ### Enable Hook -``` +```cpp hook::enable(&fopen); ``` \ No newline at end of file