exportdll DLL
- From: "jean" <jean.shu@xxxxxxxxx>
- Date: 26 Jul 2006 11:27:11 -0700
Hi,
I have a extension dll called framework.dll. I have a class in it,
declared like this
class CMetadata
{
private:
int value;
public:
GetValue();
}
In my other extension dll, I callled GetValue() using the object that
created in framework module. This object is passed into this module.
This dll impliciltly link with framework dll(has dependency of
framework.lib).
This works fine. But from my understanding, all classes or functions in
a dll must be exported from the dll in order for other module to use
it. I didn't do export here, but it it still work. Is it because I
used object that created in framework module? In this case, will the
framework's import library be empty since nothing is exported from it?
.
- Follow-Ups:
- Re: exportdll DLL
- From: Doug Harrison [MVP]
- Re: exportdll DLL
- From: Ajay Kalra
- Re: exportdll DLL
- Prev by Date: Re: How to execute a .lnk file
- Next by Date: Re: exportdll DLL
- Previous by thread: How to execute a .lnk file
- Next by thread: Re: exportdll DLL
- Index(es):
Relevant Pages
|