plGetPeInfo

    The plGetPeInfo function retrieves information from the Pe Header.The function uses 2 structures, which it fills.

plGetPeInfo(
   DWORD  plPL_PEINFO,    	// Pointer to PL_PEINFO
   DWORD  plPL_POINTERS,	// Pointer to PL_POINTERS  
);


Parameters

plPL_PEINFO

    Contains a pointer to a PL_PEINFO structure, which will be filled after the execution of this function.If you don't need this info, the parameter should be NULL.

 

plPL_POINTERS

    Contains a pointer to a PL_POINTERS structure, which will be filled after the execution of this function.If you don't need this info, the parameter should be NULL.

 

Return Value

    If the function succeeds, the return value is TRUE.

Example

 
.data?
     strucPeInfo PL_PEINFO <>
     strucPointers PL_POINTERS <>
 
.code
     invoke plGetPeInfo, addr strucPeInfo, addr strucPointers
 

See Also

plUpdatePeInfo, PL_PEINFO, PL_POINTERS, plChangeEP

Pumqara <programs@mail.bg> 2004. All rights reserved.