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.

35 lines
679 B

  1. #ifndef _STDAFX_H
  2. #define _STDAFX_H
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. #include <windows.h>
  7. #include <objbase.h>
  8. #include <winsock2.h>
  9. #include <tapi3.h>
  10. #include <control.h>
  11. #include <strmif.h>
  12. #include <confpriv.h>
  13. #include <h323priv.h>
  14. #include <rtutils.h>
  15. #include "bgdebug.h"
  16. #include "resource.h"
  17. #include "bgevent.h"
  18. #include "bgitem.h"
  19. #include "bgapp.h"
  20. // H323 call listener sends event to dialog box
  21. #define WM_PRIVATETAPIEVENT WM_USER+101
  22. // use log functions by msp
  23. #ifdef BGDEBUG
  24. #define ENTER_FUNCTION(s) \
  25. const CHAR __fxName[] = s
  26. #else
  27. #define ENTER_FUNCTION(s)
  28. #endif
  29. #endif