mirror of
https://github.com/ItsDrike/hyprland-dwindle-autogroup.git
synced 2024-11-09 18:59:40 +00:00
10 lines
417 B
C++
10 lines
417 B
C++
#include "globals.hpp"
|
|
|
|
/* Find function pointer from the Hyprland binary by it's name and demangledName
|
|
*
|
|
* \param[in] name Simple name of the function (i.e. createGroup)
|
|
* \param[in] demangledName Demangled name of the function (i.e. CWindow::createGroup())
|
|
* \return Raw pointer to the found function
|
|
*/
|
|
void* findHyprlandFunction(const std::string& name, const std::string& demangledName);
|