The name-decoration tag has no wiki summary.
9
votes
2answers
708 views
8
votes
2answers
8k views
Exporting functions from a DLL with dllexport
I'd like a simple example of exporting a function from a C++ windows DLL.
I'd like to see the header, the cpp file, and the def file (if absolutely required).
I'd like the exported name to be ...
6
votes
2answers
155 views
VC++ prevent all symbol name decorations
I'm working on a DLL which will be used from another language (so no import libs and including the dll's headers) using the _stdcall calling convetion. The problem is that VC++ seems to always do some ...
6
votes
1answer
215 views
Do C++ mangled names stay consistent when compiled on different computers?
In general, what I've observed using nm on Linux is that T symbol names (which I'm interested in) stay consistent across different computers even when I'm not using extern "C". Is my observation ...
5
votes
1answer
213 views
White-box testing in Javascript - how to deal with privacy?
I'm writing unit tests for a module in a small Javascript application. In order to keep the interface clean, some of the implementation details are closed over by an anonymous function (the usual JS ...
5
votes
2answers
5k views
GCC compiling a dll with __stdcall
When we compile a dll using __stdcall inside visual studio 2008 the compiled function names inside the dll are.
FunctionName
Though when we compile the same dll using GCC using wx-dev-cpp GCC ...
4
votes
3answers
332 views
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++ ...
4
votes
1answer
551 views
GCC exports decorated function name only from dll
I have a dll, it exports a function...
extern "C"
int __stdcall
MP_GetFactory( gmpi::IMpUnknown** returnInterface )
{
}
I compile this with Code::Blocks GCC compiler (V3.4.5). Problem: resulting ...
4
votes
5answers
429 views
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).
He should be able to obtain a list ...
4
votes
1answer
119 views
C++ - Import of explicitly specialised templates on Windows
I am having some trouble getting a program to link on Windows with VC2008 SP1.
I am explicitly specialising a template member function in a DLL, which appears correctly as an exported symbol in ...
4
votes
9answers
7k views
Finding Dll Function Parameters
How would one go about finding the parameters of an undocumented Dll function? I have searched all over the internet and have found one way involving decorated functions but I cannot find a way to get ...
3
votes
1answer
167 views
DLL and Name Mangling
I have a third-party LIB which has symbols exported as plain C/cdecl, so for example dumpbin.exe /SYMBOLS reports that both __imp_nvmlInit and nvmlInit are exported.
However in Visual Studio 2010 ...
3
votes
1answer
128 views
Linking to Windows API's PatchAPI
I would like to use Windows API's PatchAPI in order to apply some patches.
Applying of patches is implemented in mspatcha.dll, which should be located in one's system32 folder.
After reading in ...
3
votes
2answers
307 views
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:
extern "C" {
JNIEXPORT jlong JNICALL ...
3
votes
4answers
1k views
What are the porting issues going from VC8 (VS2005) to VC9 (VS2008)?
I have inherited a very large and complex project (actually, a 'solution' consisting of 119 'projects', most of which are DLLs) that was built and tested under VC8 (VS2005), and I have the task of ...
3
votes
7answers
3k views
Can't access variable in C++ DLL from a C app
I'm stuck on a fix to a legacy Visual C++ 6 app. In the C++ DLL source I have put
extern "C" _declspec(dllexport) char* MyNewVariable = 0;
which results in MyNewVariable showing up (nicely ...
2
votes
1answer
137 views
C++ name space confusion - std:: vs :: vs no prefix on a call to tolower?
Why is this?
transform(theWord.begin(), theWord.end(), theWord.begin(), std::tolower); - does not work
transform(theWord.begin(), theWord.end(), theWord.begin(), tolower); - does not work
but
...
2
votes
2answers
109 views
C++ Function Calling Assembly Module
I want to write a customized module in assembly and have my C++ functions invoke it. Instead of starting from scratch I would like to write the "draft" in C and let the compiler generates a blue ...
2
votes
2answers
508 views
Why GetProcAddress doesn't work?
First, I create a simple dll called SimpleDll.dll, its head file:
// SimpleDll.h
#ifdef MYLIBAPI
#else
#define MYLIBAPI __declspec(dllimport)
#endif
MYLIBAPI int Add(int a. int b);
its source ...
2
votes
2answers
201 views
Convert 32 bits .def file to 64 bits
In my company we use .def files to specify the symbols that need to be exported. (I wish I could use a more modern and automated technique, unfortunately, the guys who decide live back in the ...
2
votes
2answers
411 views
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();
When VS2008 compiled the source for this, the dll ...
2
votes
3answers
850 views
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).
Here is my declaration:
extern "C" HRESULT __declspec(dllexport) __stdcall ...
2
votes
1answer
946 views
WIX C++ Custom Action
I have a basic WIX custom action:
UINT __stdcall MyCustomAction(MSIHANDLE hInstaller)
{
DWORD dwSize=0;
MsiGetProperty(hInstaller, TEXT("MyProperty"), ...
2
votes
4answers
2k views
Export Unmanaged Classes from a Visual C++ DLL?
When creating a DLL with Visual C++ 2008 I have a couple of choices. I can create a "Class Library", which I understand will actually give me a .Net Library that uses the CLI (managed) extenstion of ...
2
votes
2answers
642 views
Modifying decorated names - VS6.0 to VS2005 migration
After a number of hours Googling, I think it's time to ask the experts. We have a legacy module (MS Visual C++ 6.0) that we are trying to port to VS 2005. A number of calling applications exist, so ...
2
votes
5answers
2k views
Using C++ DLLs with different compiler versions
This question is related to "How to make consistent dll binaries across VS versions ?"
We have applications and DLLs built
with VC6 and a new application built
with VC9. The VC9-app has to use
DLLs ...
1
vote
2answers
115 views
mingw32 g++ and stdcall @suffix
I declared some C++ functions prototyped as follows:
extern "C" void __stdcall function();
I also have some third-party dll with exported function() - no name decorations at all.
I'm unable to ...
1
vote
2answers
88 views
what is the syntax for a __stdcall name decoration?
I have a program that calls a set of function as follows:
int _stdcall VB_Create(char*);
int _stdcall VB_Open(unsigned int, unsigned int, unsigned int, unsigned int);
...
...
If there is a mismatch ...
1
vote
3answers
125 views
Uusing functions in a dll in c++?
I have created a dll in c++ using __declspec(dllexport) before class name. Now when i try to use it in another c++ program it crashes in between. When i debugged it i found that the function pointer ...
1
vote
4answers
110 views
C++ Compiler Implementing Namespace
From the C++ compiler's point of view, is namespace just a name decoration convention? I have inspected the generated assembly listing and found that everything just looks the same except the ...
1
vote
1answer
64 views
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 ...
1
vote
4answers
1k views
C4503 warnings? How do i solve/get rid of them?
It's my first time trying out C++ STL. I'm trying to build a multidimensional associative array using map. For example:
typedef struct DA {
string read_mode;
string data_type;
void ...
1
vote
7answers
3k views
C++ DLL Export: Decorated/Mangled names
Created basic C++ DLL and exported names using Module Definition file (MyDLL.def).
After compilation I check the exported function names using dumpbin.exe
I expect to see:
SomeFunction
but I see ...
1
vote
2answers
435 views
using dllimport
I'm trying to use the DllImport attribute in the following code:
[DllImport("grfinger.dll",EntryPoint="_grstartenroll@4")]
public static extern int startenroll(int context);
to get the function ...
1
vote
3answers
864 views
Why isn't stl compare function a member?
Just idly curious why the compare function for stl::sort can't be a static member?
I have a small little helper class foo that is declared and defined in a header, but now I have to create a ...
1
vote
1answer
147 views
eliminating the inter-compiler incompatibility issue with C++ dynamic libraries
..., a follow up to this.
From the answers I've been given to my referenced question I've learned that:
different compilers use different name decoration, which makes it impossible to use a C++ ...
1
vote
3answers
372 views
How do I increase the allowed decorated name length in VC9 (MSVC 2008)?
I have a rather large and complex set of programs to port from VC8 to VC9. One of the modules has a number of layered typedefs, which cause the compiler to generate a C4503 warning (decorated name ...
0
votes
0answers
41 views
mingw linking woes related to underscores
I'm trying to write a very basic program using the most recently available binaries for Orx, a game engine. I'm using mingw, msys and make. It compiles, but doesn't link, citing the following:
...
0
votes
2answers
156 views
Calling a native C compiled with VS 2005 from C++/CLI Visual studio 2010 - Cannot open .lib file…
Hi I want to call functions from a C dll to C++/CLI. The C functions are declared extern. I followed this tutorial for linking the dll: ...
0
votes
1answer
31 views
DLL exported function call
Is there any generic tool witch can load a dll,display all it's export functions and then allow you to make a call to a specific export while cathcing the results?
0
votes
1answer
242 views
Link errors with libcurl
I include and use libcurl for a project and I get this error
unable to generate p/invoke for "function_declaration" decorated_name; calling convention missing in metadata
and others.
I code with ...
0
votes
2answers
193 views
How can I work around Visual C++ 2005's “decorated name length exceeded, name was truncated” warning?
For example, say for some reason I had a piece of code that looked like this:
mutable std::vector<std::vector<std::vector<std::vector<
std::vector<MyNamespace::MyType> > > ...
0
votes
1answer
81 views
Finding out name decoration
I have an ActiveX DLL that I am integrating with a standard third party client. To achieve this, I had to include a custom DEF file, a proxy linker, and self-initialize the COM libraries.
When I test ...
0
votes
1answer
187 views
Importance of compiling single-threaded v. multi-threaded (and lib naming conventions)?
[ EDIT ] ==>
To clarify, in those environments where multiple targets are deployed to the same directory, Planet Earth has decided on a convention to append "d" or "_d" or "_debug" to the "DEBUG" ...
0
votes
2answers
188 views
Hiding a winform & bringing it back from a DLL
In my DDL, I have the following function defined:
extern "C" __declspec(dllexport) void hideme(HWND h) {
//ShowWindow(h, SW_HIDE);
SendMessage(h, WM_SHOWWINDOW, FALSE, 0);
}
As you can see, ...
0
votes
3answers
176 views
Why extern “C” still cannot remove name mangling in the following case
extern "C"
{
__declspec(dllexport) LRESULT CALLBACK MTest
}
Using depends , I found there is still name mangling even using extern "C".
0
votes
2answers
253 views
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 ...
0
votes
4answers
111 views
why can I not get access to my DLL function
I'm trying to load a DLL dynamically using LoadLibrary(), which works, however I cannot then get the address of the function in the DLL that I'm trying to call.
DLL function: (in CPP file)
...
0
votes
2answers
2k views
Cannot call DLL import entry, C# -> C++, EntryPointNotFoundException
I'm trying to call from C# a function in a custom DLL written in C++. However I'm getting the warning during code analysis and the error at runtime:
Warning: CA1400 :
Microsoft.Interoperability ...
0
votes
7answers
339 views
Link error for Windows functions
I'm trying to test if standard library (kernel32.dll) have one of the function.
Code snippet for test:
extern void CreateProcessA (void);
int
main (void)
{
CreateProcessA ();
return 0;
}
The ...