I have a pointer to a function in a DLL file (in the implementation, not in the header). How can I call the function indicated by this pointer in the exe source code?
you can export a function that returns a pointer. Title:
typedef void ( *MyPtr ) (); __declspec( dllexport ) MyPtr GetMyPtr();
Source:
MyPtr GetMyPtr() { //retunr the function pointer here }
Source: https://habr.com/ru/post/1614434/More articles:How to update a form with multiple values in ejs + mongoose? - node.jsCan boost :: asio :: ssl :: context be shared across multiple SSL streams? - c ++https://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1614431/converting-list-of-long-ints-to-ints&usg=ALkJrhizAwzOoRvMEj7kSCD2U0lDlrnBvAdisp (fprintf ()) prints fprintf and the number of characters. What for? - printfРазница между сеансом, HTTP-соединением? - httpApache ProxyPass not working on OS X Yosemite - apacheОшибка Python: TypeError: getsockaddrarg: адрес AF_INET должен быть кортежем, а не int - pythonHow to set page title from partial page in MVC - c #Set page title from PartialView - asp.net-mvc-3NA-based data frame filtering on multiple columns - rAll Articles