Help for this page

Select Code to Download


  1. or download this
      $function = Win32::API->new(
          'mydll.dll', 'int sum_integers(int a, int b)',
    ...
      $function = Win32::API->new(
          'mydll.dll', 'sum_integers', 'II', 'I',
      );
    
  2. or download this
      $function = Win32::API->new(
          undef, 1900000000, 'int meaninglessName(int a, int b)',
    ...
      $function = Win32::API->new(
          undef, 'int 1900000000(int a, int b)',
      );