Source code of Windows XP (NT5)
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.

29 lines
469 B

  1. #ifndef __INFO_H__
  2. #define __INFO_H__
  3. class CInfo
  4. {
  5. public:
  6. CInfo();
  7. ~CInfo();
  8. void SetCallInfo(HANDLE hModule, MYDEBUG_CALLINFOARGS);
  9. void traceInScope(LPCWSTR str);
  10. void traceOutScope();
  11. void traceString(LPCWSTR str);
  12. void traceSection(LPCWSTR str);
  13. void traceRegion(LPCWSTR str, HRGN hRgn);
  14. private:
  15. HANDLE m_hCurModule;
  16. char *m_szCurFile;
  17. int m_nCurLine;
  18. /* CModule *pFirst;
  19. CModule *pLast;
  20. CItem *pFirst;
  21. CItem *pLast;*/
  22. };
  23. #endif //__INFO_H__