2014-06-30 19:39:45 +04: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 18:16:25 +04: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/. */
|
|
|
|
|
|
|
|
#include "mozilla/Debug.h"
|
|
|
|
|
|
|
|
#ifdef XP_WIN
|
|
|
|
# include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2014-02-11 00:50:16 +04:00
|
|
|
#ifdef XP_WIN
|
|
|
|
|
2014-05-13 21:41:38 +04:00
|
|
|
void mozilla::PrintToDebugger(const char* aStr) {
|
2014-02-12 01:01:29 +04:00
|
|
|
if (::IsDebuggerPresent()) {
|
|
|
|
::OutputDebugStringA(aStr);
|
2014-02-11 00:50:16 +04:00
|
|
|
}
|
2014-02-12 01:01:29 +04:00
|
|
|
}
|
2014-02-11 00:50:16 +04:00
|
|
|
|
|
|
|
#endif
|