]> cygwin.com Git - cygwin-apps/setup.git/blob - msg.cc
2001-12-22 Gary R. Van Sickle <g.r.vansickle@worldnet.att.net>
[cygwin-apps/setup.git] / msg.cc
1 /*
2 * Copyright (c) 2000, Red Hat, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
11 *
12 * Written by DJ Delorie <dj@cygnus.com>
13 *
14 */
15
16 /* The purpose of this file is to centralize all the message
17 functions. */
18
19 #if 0
20 static const char *cvsid =
21 "\n%%% $Id$\n";
22 #endif
23
24 #include "win32.h"
25 #include <stdio.h>
26 #include <stdarg.h>
27 #include "dialog.h"
28 #include "log.h"
29
30 void
31 msg (const char *fmt, ...)
32 {
33 char buf[1000];
34 va_list args;
35 va_start (args, fmt);
36 vsprintf (buf, fmt, args);
37 OutputDebugString (buf);
38 }
39
40 static int
41 mbox (HWND owner, const char *name, int type, int id, va_list args)
42 {
43 char buf[1000], fmt[1000];
44
45 if (LoadString (hinstance, id, fmt, sizeof (fmt)) <= 0)
46 ExitProcess (0);
47
48 vsprintf (buf, fmt, args);
49 log (0, "mbox %s: %s", name, buf);
50 return MessageBox (owner, buf, "Cygwin Setup", type);
51 }
52
53 void
54 note (HWND owner, int id, ...)
55 {
56 va_list args;
57 va_start (args, id);
58 mbox (owner, "note", 0, id, args);
59 }
60
61 void
62 fatal (HWND owner, int id, ...)
63 {
64 va_list args;
65 va_start (args, id);
66 mbox (owner, "fatal", 0, id, args);
67 exit_setup (1);
68 }
69
70 int
71 yesno (HWND owner, int id, ...)
72 {
73 va_list args;
74 va_start (args, id);
75 return mbox (owner, "yesno", MB_YESNO, id, args);
76 }
This page took 0.04077 seconds and 5 git commands to generate.