home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / tools / profiler / prf / prf.h < prev    next >
Text File  |  1988-11-18  |  954b  |  38 lines

  1. ; File:
  2. ;        prf.h   - Contains structure definitions for PRF functions 
  3. ;        
  4.  
  5. ;*******************************************************************************
  6. ;*                                                                             *
  7. ;*        STRUCTURE DEFINITIONS FOR PARAMETERS PASSED INTO PRF FUNCTIONS       *
  8. ;*                                                                             *
  9. ;*                                                                             *
  10. ;*******************************************************************************
  11.  
  12. ; Offsets common to function codes:
  13.                
  14. S_PRFFn            struc
  15. SavedBP            dw    ?
  16. RetAddr            dd    ?
  17. FunctionCode        dw    ?
  18. S_PRFFn            ends
  19.                 
  20. ; PRF_START
  21.      
  22. S_START            struc        
  23. S0_SaveBP        dw    ?
  24. S0_RetAddr        dd    ?
  25. S0_FunctionCode        dw    ?
  26. S0_CodeSegment       dw    ?
  27. S_START            ends
  28.  
  29. ; PRF_STOP
  30.  
  31. S_DN            struc
  32. S1_SaveBP        dw    ?
  33. S1_RetAddr        dd    ?
  34. S1_FunctionCode        dw    ?
  35. S_DN            ends
  36.  
  37.