name-decoration
Convert 32 bits .def file to 64 bits
In my company we use .def files to specify the symbols that need to be exp开发者_如何学Goorted. (I wish I could use a more modern and automated technique, unfortunately, the guys who decide live back[详细]
2023-02-02 21:05 分类:问答How do I change the exported name decoration for __stdcall in VC++?
This is how I have my export function declared at the moment: extern \"C\" __declspec(dllexport) Iexport_class* __stdcall GetExported_Class();[详细]
2023-01-31 09:12 分类:问答Browsing 'Decorated Names' in Visual Studio
I\'m working on a (rather horrible) project that involves importing a C++ class hierarchy through a dll interface.One of the more horrible details requires me know the \'decorated\' names for the vari[详细]
2023-01-22 03:40 分类:问答Using Win32 libraries through Windows Form elements
I have created a simple GUI using Windows Forms in visual C++ 2008. There is a button in the GUI. When the button is pressed I want mouse cursor to point at coordinates (0,900). I have created separat[详细]
2023-01-15 17:57 分类:问答Why can't I use __declspec(dllexport) to export DllGetClassObject() from a COM DLL?
I am developing a COM dll and trying to export the DllGetClassObject() method with the __declspec(dllexport).[详细]
2023-01-11 07:28 分类:问答Is C++ name mangling (decoration) deterministic?
I hope to LoadLibrary on an unmanaged C++ DLL with managed code, and then call GetProcAddress on extern functions which have been mangled. My question is are the mangled names you get from a C++ compi[详细]
2023-01-07 14:33 分类:问答extern "C" has no effect in msvc++ 9.0
I manage project for JNI for both compilers: MSVC++ 8.0 and 9.0, my cpp file contains following implementation:[详细]
2022-12-23 10:53 分类:问答Can I programatically deduce the calling convention used by a C++ dll?
Imagine you\'d like to write a program that tests functions in a c++ dll file. You should enable the user to select a dll (we assume we are talking about c++ dlls).[详细]
2022-12-20 04:29 分类:问答WIX C++ Custom Action
I have a basic WIX custom action: UINT __stdcall MyCustomAction(MSIHANDLE hInstaller) { DWORD dwSize=0; MsiGetProperty(hInstaller, TEXT(\"MyProperty\"), TEXT(\"\"), &dwSize);[详细]
2022-12-18 05:24 分类:问答How to know defination of a struct in dll?
I need to use a third party DLL which I don\'t have header , lib or object file of it just DLL alone, I follow this article \"Explicitly Linking to Classes in DLL\'s\" in codeguru and able to user fun[详细]
2022-12-14 18:56 分类:问答