Get winemaker to drop the trailing CtrlZ that is still to be found on
[wine] / programs / notepad / license.c
1 /*
2  *  Notepad (license.h)
3  *
4  *  Copyright 1997,98 Marcel Baur <mbaur@g26.ethz.ch>
5  *  To be distributed under the Wine License
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 }
27