Backed out 2 changesets (bug 1943998) for causing wd failures @ phases.py CLOSED...
[gecko.git] / ipc / chromium / src / base / win_util.h
blobb37411f60ddf7663ff6738cf7f28a1d35316486a
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style license that can be
5 // found in the LICENSE file.
7 #ifndef BASE_WIN_UTIL_H__
8 #define BASE_WIN_UTIL_H__
10 #include <windows.h>
11 #include <aclapi.h>
13 #include <string>
15 namespace win_util {
17 // Uses the last Win32 error to generate a human readable message string.
18 std::wstring FormatLastWin32Error();
20 } // namespace win_util
22 #endif // BASE_WIN_UTIL_H__