Help for this page

Select Code to Download


  1. or download this
    use Win32::API;
    
    ...
      );
    
       my $string =  $function->Call('FontEncode');
    
  2. or download this
      $function = Win32::API->new(
          'IDAutomationDMATRIX6', 'FontEncode',['P','N','N','N','P'], 'P'
      );
    
  3. or download this
      $function = Win32::API->new(
          'IDAutomationDMATRIX6', 'FontEncode',['P','N','N','N','P'], 'P',
    + '_cdecl'
      );
    
  4. or download this
      $function = Win32::API->new(
          'IDAutomationDMATRIX6', 'FontEncode',['P','N','N','N','P'], 'P',
    + '__stdcall'
      );
    
  5. or download this
    my $string =  $function->Call($str1, $n1, $n2, $n3, $str2);
    
  6. or download this
    my $string = '' x 500; # Big enough ?
    $string =  $function->Call($str1, $n1, $n2, $n3, $str2);