Added mappings for a few messages.
[wine] / programs / clock / license.c
1 /*
2  * Clock (license.c)
3  *
4  * Copyright 1998 by Marcel Baur <mbaur@g26.ethz.ch>
5  * Adapted from Program Manager (Original by Ulrich Schmied)
6  */
7
8 #include "windows.h"
9 #include "license.h"
10
11 VOID WineLicense(HWND Wnd)
12 {
13   /* FIXME: should load strings from resources */
14   LICENSE *License = &WineLicense_En;
15   MessageBox(Wnd, License->License, License->LicenseCaption,
16              MB_ICONINFORMATION | MB_OK);
17 }
18
19
20 VOID WineWarranty(HWND Wnd)
21 {
22   /* FIXME: should load strings from resources */
23   LICENSE *License = &WineLicense_En;
24   MessageBox(Wnd, License->Warranty, License->WarrantyCaption,
25              MB_ICONEXCLAMATION | MB_OK);
26 }