Hi,
i have a problem where i try to dumpbin.exe /exports one of my dll.
i could not get the functions that i have built in.
i have coded 2 type of languages and compile them into dll.
for example:
.net
Public Class Class1
Public Function apaitu() As String
Return "asdadasdasd"
End Function
End Class
vb6
Public Function apaitu() As String
Return "asdadasdasd"
End Function
for both i got the msg below:
Section contains the following exports for Testing.dll
0 characteristics
4A66A56F time date stamp Wed Jul 22 13:36:47 2009
0.00 version
1 ordinal base
4 number of functions
4 number of names
ordinal hint RVA name
1 0 0000185E DllCanUnloadNow
2 1 00001832 DllGetClassObject
3 2 00001848 DllRegisterServer
4 3 0000181C DllUnregisterServer
Summary
1000 .data
1000 .reloc
1000 .rsrc
1000 .text
it's the COM object, i can register and use them.
but i could not get the function displayed on the dumpbin.
it's it the compilation require any settings or configurations?
any idea, expert?
regards