|
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...
Started by Ben on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Agree with EFraim but maybe you have....
Dumpbin can list the procedure names, but you cannot deduce the return types, the number of parameters, e.t.c .
C procedure symbols have no type information mangled in.
That's not possible in case of generic C Dll.
|
|
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 thought the sole purpose of a DLL was to export functions...
Started by Bryan Dunphy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
While exporting functions from a DLL is perhaps the most common way to provide access....
Exporting a function from a DLL makes those functions visible to callers outside of the DLL.
One way to think of a DLL is as a container for functions .
|
|
What rules apply to the name that ends up in the exports section of an PE (Portable Executable)? Roughly, I see names starting with an '_' underscore, a '?' question mark or an '@' at-sign. What do those mean, and what about the rest of the name?
Also...
Started by PatrickvL on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Name mangling
It's used to make sure exports names are unique
You can specify a .def file which the following structure
LIBRARY "MyDll" EXPORTS exportFunction1
One other thing : Jcl contains yet another.
|
Ask your Facebook Friends
|
I have tried the import and export with and without file compression. Any ideas?
Here is the command I am using:
stsadm.exe -o export -url http://site.com/sites/legal/ -versions 4 -includeusersecurity -haltonfatalerror -filename c:\export\legalexport\...
Started by JustinB on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Instead of -filename c:\export\legalexport\ try -filename c:\export\legalexport\exported.dat
Try the problem where the order of the export somehow seemed mixed up; it was trying to import a file are up for it you can open the ....
|
|
Is there any performance difference between subversion checkouts and exports when running your webapplication?
We already implemented this in our deployment process, without measuring for differences (which feels bad. and is bad.).
Our intentions were...
Started by Karsten on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
If you just svn update within a deployment for the Subversion client to write... .
Deployment mechanism (that is, you export/check out to a new directory every time then update a symlink or similar) you might as well go over to using export.
|
|
I am converting an ATL-based static library to a DLL and am getting the following warning on any exported classes that use the ATL CString class (found in atlstr.h):
warning C4251: 'Foo::str_' : class 'ATL::CStringT' needs to have dll-interface to be ...
Started by Rob on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If the members in question are not accessible to the clients, make... .
In short, the compiler is warning you that, in effect, your exported class does not seperate the interface from the implementation.
Here is a thread with a good discussion of this .
|
|
Who Exports More Weapons? India or Pakistan Well guys i have been following weapons Exports trends of India and Pakistan on different threads.So i Wanted to Know who Exports more weapons and Primarily of What Types.Thanks.
Started by pak-yes on
, 15 posts
by 7 people.
Answer Snippets (Read the full thread at defence):
How can you export Brahmos.I mean it's range is greater To Export Cruise....
Brahmos How can you export: Who Exports More Weapons?India or Pakistan.
Exports.I mean how much?? Re: Who Exports More Weapons?India or Pakistan.
|
|
Hi, I'm trying to build a project I have and it has several exported functions. The functions follow the stdcall convention and they get mangled if compiled with GCC as
Func@X
Other compilers mangle the name like this:
_Func@X
Is any way I can force GCC...
Started by JP on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
See this answer.
Typically you only need the EXPORTS section:
EXPORTS Func1 Func2 ...
Of the compiler.
|
|
Hi, I am exporting .bas files from an .xls file as outlined here: Exporting A VBComponent Code Module To A Text File to check them in into an SVN repo.
I am encountering the following issue which causes a change on the files that is actually not real ...
Started by HKK on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
1) Are you using option, export the .bas ....
A couple of questions.
These are just some export routines but they look similar at first glance.
If it exports to .cell then it should always export to .cell and not be a problem.
|
|
There is a MySQL database located on my remote Linux server. I have written a .NET Windows application to export data to this MySQL database. I want to know whether there will be any compatibility issues regarding .NET / Linux?
Started by RPK on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There shouldn't be any difficulty, if you mean export the data, you meant something like 'Show Create.
|