]> cygwin.com Git - cygwin-apps/setup.git/blame - msg.cc
2002-04-23 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
ab57ceaa 41mbox (HWND owner, 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);
1ac649ed 49 log (LOG_PLAIN, String ("mbox ") + name + ": " + buf);
ab57ceaa 50 return MessageBox (owner, buf, "Cygwin Setup", type);
23c9e63c
DD
51}
52
53void
ab57ceaa 54note (HWND owner, int id, ...)
23c9e63c
DD
55{
56 va_list args;
57 va_start (args, id);
ab57ceaa 58 mbox (owner, "note", 0, id, args);
23c9e63c
DD
59}
60
61void
ab57ceaa 62fatal (HWND owner, int id, ...)
23c9e63c
DD
63{
64 va_list args;
65 va_start (args, id);
ab57ceaa 66 mbox (owner, "fatal", 0, id, args);
89b1a15b 67 exit_setup (1);
23c9e63c
DD
68}
69
70int
ab57ceaa 71yesno (HWND owner, int id, ...)
23c9e63c
DD
72{
73 va_list args;
74 va_start (args, id);
ab57ceaa 75 return mbox (owner, "yesno", MB_YESNO, id, args);
23c9e63c 76}
This page took 0.041119 seconds and 5 git commands to generate.