Tagged Questions
__declspec( dllexport ) is a C compiler directive for exporting Vars and functions between DLLs
12
votes
6answers
1k views
Creating a C# DLL and using it from unmanaged C++
I have a native (unmanaged) C++ application (using wxWidgets for what it's worth). I'm considering a separate tool application to be written in C# which would contain winform-based dialogs. putting ...
7
votes
5answers
179 views
DLL without exported functions?
I've snooped around a little bit in MS-Office DLLs, and I noticed that some of the DLLs don't have any exported functions. What I don't quite understand, how an application can use these DLLs without ...
7
votes
3answers
3k views
Exporting static data in a DLL
I have a DLL which contains a class with static members. I use __declspec(dllexport) in order to make use of this class's methods. But when I link it to another project and try to compile it, I get ...
5
votes
3answers
91 views
How to resolve conflicting linker dependencies?
If I have two libraries, A.lib and B.lib, both of which export foo and bar, how do I tell the linker to use the symbol foo from A.lib and the symbol bar from B.lib?
5
votes
2answers
146 views
How can a DLL have zero exports?
I recently ran across a DLL installed on my system that Dependancy Walker (and every other utility I tried) says has zero exports by name or ordinal, yet the file is approximately 4mb in size. I ...
5
votes
3answers
2k views
Cannot export template function
I have a class named "SimObject":
namespace simBase
{
class __declspec(dllexport) SimObject: public SimSomething
{
public:
template <class T>
void ...
4
votes
3answers
938 views
How do I DllExport a C++ Class for use in a C# Application
I have created a C++ Dll project which contains a class "myCppClass" and tried to Dll export it using the following code as described by:
http://msdn.microsoft.com/en-us/library/a90k134d(v=vs.80).aspx
...
3
votes
3answers
112 views
Export dll method from C++ to C#. Why I need: “ extern ”C“ ”
In my dll there is a method that I want to export.
//Works:
extern "C" __declspec(dllexport)
//Wont work
__declspec(dllexport)
C++ Export:
extern "C" __declspec(dllexport) int Test();
C# ...
3
votes
2answers
1k views
stdcall name mangling using extern c and dllexport vs module definitions (msvc++)
I was trying to export a simple test function for a dll to work with an application (fyi: mIRC) that specifies the calling convention as:
int __stdcall test_func(HWND mWnd, HWND aWnd, char *data, ...
3
votes
3answers
517 views
C++ DLL-Linking UnResolved Externals
I have a rather big Core project that I'm working with, I'm attempting to adapt it to use a DLL Engine I've built, I'm getting a bunch of errors like:
unresolved external symbol "private: static ...
3
votes
0answers
587 views
Need to call non exported functions of DLL
I need to call (get) non exported functions of DLL. Unlike PE export table, non exports do not have any table having entries for these. More over all disassembler like IDAPro and other debuggers only ...
3
votes
0answers
677 views
Automatically generate a DLL .DEF file in Visual Studio?
Is there any way to automatically generate the DEF file for a DLL in Visual Studio? I've always just manually created them before, but there's gotta be an easier way.
3
votes
1answer
648 views
How to export C++ function as a dll that throws exception?
When I try to export the following function as a dll:
extern "C" __declspec(dllexport) void some_func()
{
throw std::runtime_error("test throwing exception");
}
Visual C++ 2008 gives me the ...
2
votes
0answers
53 views
How to Export a variable from a DLL when compiling the D2 language with dmd?
What is the D2 language equivalent of __declspec(dllexport)
I have the D2 DLL linkage example code found here
http://www.d-programming-language.org/dll.html
up and running. Exporting functions, ...
2
votes
4answers
47 views
How do you limit what gets exported from a c# dll?
I have a dll that I only want certain classes to be exported. In C++, you can use the class __declspec(dllexport) ClassName ... Is there a C# equivalent?
2
votes
2answers
165 views
How can I handle DLL_EXPORT when compiling dll to a static library?
I have a project in visual c++ 2010, which contains preprocessor directives in a key header file. Actually, it is the ZMQ source code.
The project is normally configured to be a dll, so the header ...
2
votes
1answer
260 views
PE Export Directory Table's OrdinalBase field ignored?
In my experience and that of others (http://webster.cs.ucr.edu/Page_TechDocs/pe.txt), the PE/COFF specification document incorrectly claims that the Export Address Table indices that are contained in ...
2
votes
1answer
198 views
export specialized template function from a dll
I have a template function that I define in a header file in a dll. I don't need to export the function because all of the consumers will read in the header file and have the whole function anyway. ...
2
votes
5answers
365 views
Use C++ DLL with VB6
I just created a DLL for my boss in MSVC++2010. I selected "New Win32 DLL" with option "Export symbols", so, everything is completely standard. There are some predefined exports in the new project ...
2
votes
2answers
144 views
Problem invoking C DLL in C#
I'm currently trying to invoke a method made in C from C#
C code looks like this:
extern "C" int addSum(int a, int b)
{
return a*b;
}
extern "C" int getCount()
{
return 12;
}
and C# code ...
2
votes
4answers
334 views
How to use a class in DLL?
Can I put a class inside a DLL?
The class i wrote is this:
class SDLConsole
{
public:
SDLConsole();
~SDLConsole(){};
void getInfo(int,int);
...
2
votes
3answers
261 views
why do we need to export a class in c plus plus?
I am a beginner, so, please bare with me, if this sounds too trivial.When i searched over the net for this, i got results showing how to do it. My question is why we do it in the first place ?
Atul
...
2
votes
1answer
523 views
How to read the export function names of a (native) DLL in C#?
I know I can read the PE specification in order to write a code that does this.
However, since I don't have a lot of time on my hands, I was hoping some of you might already have such a code sample ...
2
votes
2answers
446 views
Defining extern “C” function in C#
I have an ActiveX control written in C# and working when run in an ActiveX compatible program (CoDeSys). The problem I've come across is that in order to allow CoDeSys to interact with the ActiveX ...
2
votes
2answers
318 views
A warning with building 64bit dll
dll export header
extern "C"
void _declspec(dllexport) __stdcall foo();
.def file
EXPORTS
foo @1
When I build the dll by 64bit build config, I meet this warning.
warning LNK4197: ...
2
votes
1answer
161 views
I want to use some Matlab functions via .DLLs in a .NET program
I want to use some Matlab functions via .dlls and use them in C#, please let me know how to do that.
2
votes
2answers
473 views
Passing C++ structure pointer from Perl to arbitary dll function call
I am using Win32::API to call an arbitary function exported in a DLL which accepts a C++ structure pointer.
struct PluginInfo {
int nStructSize;
int nType;
int ...
2
votes
3answers
274 views
Creating a dll which links to another dll (MSVS2008 C++)
I am currently creating my own framework in C++ (MSVS 2008) which exports a dll with a bunch of functions for a user of my framework to use/call. In the beginning, when my project was still small, all ...
2
votes
1answer
344 views
Exporting shared library symbols in a crossplatform way?
Is there a cross platform way to selectively export certain functions and structs from a C project which builds a shared library?
I want to do in a way that does not require a specific build system ...
2
votes
2answers
2k views
Making headers from DLL exports
Is there a tool to extract/generate .h headers for DLL exports given only the DLL? Manually typing them is proving a pain in the backside...
2
votes
2answers
1k views
error C1854: cannot overwrite information formed during creation of the precompiled header in object file
foo.cpp(33918) : fatal error C1854: cannot overwrite information formed during creation of the precompiled header in object file: 'c:\somepath\foo.obj'
Consulting MSDN about this gives me the ...
1
vote
2answers
50 views
Passing Bitmap from C# to C++ Unmanaged code
I am trying without success to write code in C# to pass a bitmap to an unmanaged c++ DLL and return a POINT structure.
I have done a lot of research on the internet, but have not found the "Gotcha" ...
1
vote
4answers
87 views
Export Parent Class Without Base Class in C++
Given the classes Foo and Bar where Bar is derived from Foo, how could I export Bar without having to export Foo ?
Foo.h
class Foo
{
public:
Foo();
virtual bool Read(...);
...
1
vote
2answers
85 views
Export a class with std::string
I know this subject has been covered and re-talked, but I still get stuck every time I need to do something like that, and the internet is full of different answers.
so I decided to simply ask how to ...
1
vote
2answers
114 views
GCC (ARM) equivalent to __declspec(dllexport)
When building application for x86, the following code works fine:
#if defined _WIN32
#define LIB_PRE __declspec(dllexport)
#elif defined __unix__
#define LIB_PRE
#else
#define LIB_PRE ...
1
vote
1answer
41 views
Late Binding C++ DLL to C# - Function always returns true
I have an DLL that has this in its h file:
extern "C" __declspec(dllexport) bool Connect();
and in the c file:
extern "C" __declspec(dllexport) bool Connect()
{
return false;
}
In c# i ...
1
vote
2answers
109 views
Return array of integers from cross-platform DLL
I created a cross-platform DLL in C++ that compiles on both Windows and Mac OSX. On Windows, I have a C# app that calls the DLL using P/Invoke and on Mac OSX, an objective C app calls the DLL. I have ...
1
vote
1answer
36 views
dllexport is not recognize in x64 bit platform
extern "C" _declspec(dllexport)void Export3DS(const char* inputname,const char* Objname,const char* mtlname);
I am using vs2008 C++ I need the dll to be output in two mode 32 bit and 64 bit. I am ...
1
vote
4answers
77 views
awkward DLL exports section
I have a section of C++ code in MSVC2010 that creates a DLL wrapper. The section of code looks something like this...
extern "C" __declspec(dllexport) DWORD myDllExportFunction()
{
return ...
1
vote
1answer
103 views
Visual C++ 6.0 Name mangling, even within extern “C” and dllexport, RPC Stubs not generating
Hey guys im working on creating a new function in legacy visual C++ 6.0 dll project, so that a C# dll can call into, however i unable to do so due to name mangling and it seems no matter what I do I ...
1
vote
1answer
65 views
Heap Violations when releasing a CStringArray& parameter from a DLL exported function
I have developed a MFC dll containing a function having this prototype:
//DLL code
long __declspec(dllexport) GetData(CString csIdentifier, CStringArray& arrOfData)
{
//based on the ...
1
vote
2answers
81 views
LoadLibraryEx: Parameters get lost in 64bit
I have a 64bit-DLL which exports the function
__cdecl int (*function)(IN wchar_t* file, OUT VARIANT &htmlFile, IN wchar_t* path);
which is implemented as
int ...
1
vote
2answers
119 views
MSVC unresolved external symbol linking executables
I have two existing executables A and T, in the same solution that both ran just fine before I touched them. In executable A is a header defining a class P, and a prototype for a static instance MyP. ...
1
vote
2answers
71 views
PInvokeStackImbalance when calling a dll function from C#
I'm writing a WPF app that needs to call some C++ code that exists in a dll I've written. I'm always getting PInvokeStackImbalance errors, even with the the most rudimentary test functions. Eg, in the ...
1
vote
1answer
85 views
Wrapping C++ templates so they can be used in C#, Java etc
I have a C++ library (.lib) which relies heavily on templates. I'm creating a C++ wrapper to this library to expose its functions externally in a .dll. These exposed functions will in turn be used ...
1
vote
3answers
214 views
Get functions mangled name from C++ DLL
I have function declared as __declspec(dllexport) void TakeInput();
The DLL which has this function is exported in C#.I am getting failure while executing function call to this function as entry ...
1
vote
1answer
334 views
Problems with exporting DLL in VS2010 (CUDA)
I have having trouble when building the DLL solution. I am making the DLL for use in LabVIEW 2010 in order to have CUDA capabilities. However, I am getting linker error LNK2019 on every single one of ...
1
vote
0answers
96 views
Radstudio name mangling for a Visual Studio DLL
I am attempting to use import a new DLL written in Visual Studio 2010 to a Rad Studio 2010 executable. __declspec(dllexport) does not seem to allow the Rad Studio exectuable to declare a class from ...
1
vote
1answer
100 views
dllexported appended string is corrupt
i have an exe loading a dll. i wrote both.
i am dllexporting a function foo that returns a std::wstring.
all it does is say
std::wstring blah = L"rgjwgfw";
return blah.append(L"hey");
in ...
1
vote
3answers
194 views
My dll is exporting every function without my consent!
I am using a mingw compiler and code blocks IDE. I am facing a problem in which I don't understand how come my dll exports every function without me even using __declspec(dllexport) with these ...