Help for this page

Select Code to Download


  1. or download this
    void __stdcall OpenBlockFile(
        const char* szFileName,   /* Input  */
        HANDLE*     pHandle       /* Output */
    )
    
  2. or download this
    my $dll = Win32::API->new(
          'db.dll', 'OpenBlockFile', 'PP', 'V' )
    ...
    my $packed_handle = pack('L', 0);
    $dll->Call($filename, $packed_handle);
    $handle = unpack('L', $packed_handle);