Home > OS >  Rookie ask a question. Is the difference between input table and output table
Rookie ask a question. Is the difference between input table and output table

Time:10-05

I check it on the baidu, there I was a program is running, loading into function. But I feel there is no difference between the two. Is it the same meaning is just an alias??????

CodePudding user response:

Simple understanding exe using import table DLL export table
System load exe will find is in exe import list in which the DLL and function in the DLL export list again have to check the function name..

CodePudding user response:

Essence, is a function address, purposes, you can find a little different: input table are generally you want to call the system API; Output table is provided to you to others call API

CodePudding user response:

Input table is also called the import table, it is other executable modules export function, you should call fopen function, for example, the import table is write MSVCRTXXX. DLL fopen, the ELF have similar things,
Output table records in the data or function provided by the module to others, such as you wrote a FormatSystem function can be directly today formatting system disk, after you compile the program of the output table is the FormatSystem string, as well as the offset in this function in your module, others want to use your module FormatSystem as his import table to fill in your module name FormatSystem with name
  • Related