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.

20 lines
685 B

  1. #define WIFI_TRC_NAME TEXT("Wlpolicy")
  2. // trace identifier
  3. extern DWORD g_TraceLog;
  4. #define TRC_TRACK 0x00020000 // logs the code path
  5. #define TRC_ERR 0x00080000 // logs error conditions
  6. #define TRC_NOTIF 0x00200000 // Messages meant for DBASE
  7. #define TRC_STATE 0x01000000 // logs state machine related stuff
  8. // debug utility calls
  9. VOID _WirelessDbg(DWORD dwFlags, LPCSTR lpFormat, ...);
  10. VOID WiFiTrcInit();
  11. VOID WiFiTrcTerm();
  12. #define WLPOLICY_DUMPB(pbBuf,dwBuf) \
  13. TraceDumpEx(g_TraceLog, TRC_TRACK | TRACE_USE_MASK,(LPBYTE)pbBuf,dwBuf,1,0,NULL)