Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
172 B

  1. IFNDEF __PROFILE_INC__
  2. __PROFILE_INC EQU 1
  3. IF PROFILE
  4. EXTRN __penter:NEAR
  5. PROF_ENTRY MACRO
  6. call __penter
  7. ENDM
  8. ELSE
  9. PROF_ENTRY MACRO
  10. ENDM
  11. ENDIF
  12. ENDIF