Help for this page

Select Code to Download


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