evC dll in DotNet

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi,

plz answer the following queries:

1) the dll created using eVC 4.2 can be used in vs 2003 ppc applications, i
mean in vb.net and c# ?
2)the dll created using vs 2003(vb.net and c#) can be used in evC 4.2 ?
3)Intellisense can display the public functions declared in a dll ?

Regards,
Hari
 
1) Yes
2) No
3) No, the integration is at the level of PInvoke. You must export functions
(extern C or def file) and then they are callable from managed code (using
DllImport to redefine them much like Declare in the VB6 days)

Cheers
Daniel
 
Back
Top