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.

12 lines
218 B

  1. #ifndef _C_COM_H_
  2. #define _C_COM_H_
  3. class CCom
  4. {
  5. public:
  6. void *operator new(size_t size);
  7. void operator delete(void *pv);
  8. };
  9. #ifdef _DEBUG
  10. extern VOID PrintMemory(LPSTR lpstr);
  11. #endif
  12. #endif //_C_COM_H_