in reply to Re: [XS on Win32] How to have the extension's dll export its symbols.
in thread [XS on Win32] How to have the extension's dll export its symbols.
But, according to dumpbin /exports, 'Foo.dll' still exports only '_boot_Foo' and 'boot_Foo'.#include "EXTERN.h" #include "perl.h" #include "XSUB.h" int __declspec(dllexport) foo(int x, int y) { return x + y; } MODULE = Foo PACKAGE = Foo PROTOTYPES: DISABLE int foo (x, y) int x int y
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: [XS on Win32] How to have the extension's dll export its symbols.
by BrowserUk (Patriarch) on Mar 05, 2008 at 12:59 UTC | |
by syphilis (Archbishop) on Mar 05, 2008 at 13:35 UTC | |
by BrowserUk (Patriarch) on Mar 05, 2008 at 14:05 UTC | |
by syphilis (Archbishop) on Mar 06, 2008 at 02:12 UTC | |
by BrowserUk (Patriarch) on Mar 06, 2008 at 02:48 UTC |