Latest available version: IDA and decompilers v8.4.240320sp1 see all releases
Hex-Rays logo State-of-the-art binary code analysis tools
email icon
Read from the input file
     buf - reference to the variable that will hold the read bytes
           in form of a string
     size - number of bytes to read
Returns: number of read bytes

long loader_input_t.read(vref buf, long size);

// For example:

        auto li, buf;
        li = open_loader_input("myfile", 0);
        li.read(&buf, 100);
Index | Previous topic | Next topic