2014-06-30 15:39:45 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-11-05 14:16:25 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2014-02-11 21:01:29 +00:00
|
|
|
#ifndef mozilla_Debug_h__
|
|
|
|
#define mozilla_Debug_h__
|
2013-11-05 14:16:25 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2014-02-11 21:01:29 +00:00
|
|
|
#ifdef XP_WIN
|
2014-02-10 20:50:16 +00:00
|
|
|
|
|
|
|
// Print aStr to a debugger if the debugger is attached.
|
2014-02-11 21:01:29 +00:00
|
|
|
void PrintToDebugger(const char* aStr);
|
|
|
|
|
|
|
|
#endif
|
2013-11-05 14:16:25 +00:00
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2014-02-11 21:01:29 +00:00
|
|
|
#endif // mozilla_Debug_h__
|