home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Mammon_ / Res.idc < prev    next >
Text File  |  2000-05-25  |  754b  |  24 lines

  1.  
  2. //-------------------------------------------------------------------------------------------------------
  3. //Res.idc: Parse .rsrc segment directory, displays resources within IDA code display
  4. //Requires library file Reslib.idc to function
  5. //
  6. // code by mammon_ All rights reversed
  7. //-------------------------------------------------------------------------------------------------------
  8.  
  9. #define _RECURSE_               1
  10. #define _DISPLAY_RESOURCES_     1
  11.  
  12. #include <idc.idc>
  13. #include <reslib.idc>
  14.  
  15. static main(){
  16.     auto x, ea;
  17.     ea = GetResDir();
  18.     Message("Parsing Resource Directory [WARNING: This may take 5-10 minutes per MB of file size] ...\n");
  19.     ParseRootHdr(ea);
  20.     Message("Resource parsing completed.\n");
  21. }
  22.  
  23.  
  24.