- or download this
#include <windows.h>
...
) {
return a+b+c+d;
}
- or download this
LIBRARY TESTDLL.DLL
EXPORTS
test
- or download this
cl /LD testdll.c /link /DEF:testdll.def
- or download this
#! perl -slw
use strict;
...
8*4 = 32
9*4 = 36
10*4 = 40
- or download this
Dump of file testdll.dll
...
ordinal hint RVA name
1 0 00001000 _test@16
- or download this
Dump of file testdll.dll
...
...
ordinal hint RVA name
1 0 00001000 test
- or download this
#! perl -slw
#use strict;
...
8*4 = 32
9*4 = 36
10*4 = 40
- or download this
#include <windows.h>
...
) {
return a+b+c+d;
}
- or download this
Dump of file testdll.dll
...
ordinal hint RVA name
1 0 00001000 test
- or download this
#! perl -slw
#use strict;
...
print "$_*4 = ", test( ($_) x 4 ) for 1 .. 10;
__END__