2013-11-19 21:27:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +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/. */
|
2009-05-07 19:21:54 +00:00
|
|
|
|
|
|
|
#include "nsIOUtil.h"
|
|
|
|
#include "nsIInputStream.h"
|
|
|
|
#include "nsIOutputStream.h"
|
|
|
|
#include "nsStreamUtils.h"
|
|
|
|
|
2013-07-19 02:31:26 +00:00
|
|
|
NS_IMPL_ISUPPORTS1(nsIOUtil, nsIIOUtil)
|
2009-05-07 19:21:54 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-09-29 06:19:26 +00:00
|
|
|
nsIOUtil::InputStreamIsBuffered(nsIInputStream* aStream, bool* _retval)
|
2009-05-07 19:21:54 +00:00
|
|
|
{
|
2013-11-19 21:27:37 +00:00
|
|
|
if (NS_WARN_IF(!aStream))
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
2009-05-07 19:21:54 +00:00
|
|
|
*_retval = NS_InputStreamIsBuffered(aStream);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-09-29 06:19:26 +00:00
|
|
|
nsIOUtil::OutputStreamIsBuffered(nsIOutputStream* aStream, bool* _retval)
|
2009-05-07 19:21:54 +00:00
|
|
|
{
|
2013-11-19 21:27:37 +00:00
|
|
|
if (NS_WARN_IF(!aStream))
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
2009-05-07 19:21:54 +00:00
|
|
|
*_retval = NS_OutputStreamIsBuffered(aStream);
|
|
|
|
return NS_OK;
|
|
|
|
}
|