]> cygwin.com Git - cygwin-apps/cygutils.git/blame - src/lpr/Win32Utils.cc
lump commit
[cygwin-apps/cygutils.git] / src / lpr / Win32Utils.cc
CommitLineData
21006e63
CW
1/*
2 * lpr for cygwin/windows
3 *
4 * Copyright (C) 2000-2003 Rick Rankin
5 * http://www.cygwin.com/ml/cygwin/2000-07/msg00320.html
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation in version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#include "src/lpr/Win32Utils.hh"
22
23string Win32Utils::getErrorMessage()
24{
25 return Win32Utils::getErrorMessage(GetLastError());
26}
27
28string Win32Utils::getErrorMessage(DWORD code)
29{
30 char * lpMsgBuf;
31 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
32 FORMAT_MESSAGE_FROM_SYSTEM |
33 FORMAT_MESSAGE_IGNORE_INSERTS,
34 NULL,
35 code,
36 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
37 (LPTSTR) &lpMsgBuf,
38 0,
39 NULL);
40
41 string msg = lpMsgBuf;
42 LocalFree(lpMsgBuf);
43
44 return msg;
45}
46
This page took 0.024729 seconds and 5 git commands to generate.