]> cygwin.com Git - cygwin-apps/setup.git/blame - msg.cc
2001-11-13 Robert Collins <rbtcollins@hotmail.com>
[cygwin-apps/setup.git] / msg.cc
CommitLineData
23c9e63c
DD
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
b24c88b3
RC
19#if 0
20static const char *cvsid =
21 "\n%%% $Id$\n";
22#endif
8507f105 23
23c9e63c
DD
24#include "win32.h"
25#include <stdio.h>
26#include <stdarg.h>
27#include "dialog.h"
89b1a15b 28#include "log.h"
23c9e63c
DD
29
30void
b24c88b3 31msg (const char *fmt, ...)
23c9e63c
DD
32{
33 char buf[1000];
34 va_list args;
35 va_start (args, fmt);
36 vsprintf (buf, fmt, args);
37 OutputDebugString (buf);
38}
39
1fd6d0a2 40static int
b24c88b3 41mbox (const char *name, int type, int id, va_list args)
23c9e63c
DD
42{
43 char buf[1000], fmt[1000];
44
1fd6d0a2 45 if (LoadString (hinstance, id, fmt, sizeof (fmt)) <= 0)
23c9e63c
DD
46 ExitProcess (0);
47
48 vsprintf (buf, fmt, args);
89b1a15b 49 log (0, "mbox %s: %s", name, buf);
76cbfa85 50 return MessageBox (0, buf, "Cygwin Setup", type | MB_TOPMOST);
23c9e63c
DD
51}
52
53void
54note (int id, ...)
55{
56 va_list args;
57 va_start (args, id);
89b1a15b 58 mbox ("note", 0, id, args);
23c9e63c
DD
59}
60
61void
62fatal (int id, ...)
63{
64 va_list args;
65 va_start (args, id);
89b1a15b
DD
66 mbox ("fatal", 0, id, args);
67 exit_setup (1);
23c9e63c
DD
68}
69
70int
71yesno (int id, ...)
72{
73 va_list args;
74 va_start (args, id);
89b1a15b 75 return mbox ("yesno", MB_YESNO, id, args);
23c9e63c 76}
This page took 0.034968 seconds and 5 git commands to generate.