|
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 .
|
|
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 ....
|
Ask your Facebook Friends
|
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 .
|
|
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.
|
|
You know how Moose automatically turns on strict and warnings during import? I want to extend that behavior by turning on autodie and use feature ':5.10' in my Moose classes.
I've tracked down where Moose does this, in Moose::Exporter , which assembles...
Started by friedo on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Pragma( qw/feature :5.10/ ); # perl 5.10 ToolSet->use_pragma( qw/autodie/ ); # define exports from other modules ToolSet->export( 'Moose' => undef, # get the defaults ); 1; # modules must export its functions into the use....
|
|
Hi everybody!
I am kind of new to C# .Net and I am enjoying the learning process! Right now I am working on a project (just to learn) in which plug-ins are the main key.
I did the following till now which seems to work fine:
Interface:
namespace My.test...
Started by Gohlool on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You could add to your interface IMyPlugin a method or a property which returns the configuration control:
public interface IMyPlugin { UserControl GetConfigurationControl(); } public class SamplePlugIn: IMyPlugin { public UserControl GetConfigurationControl... .
|