- Output a FIXME when a surface with dimensions not being a power of
[wine/wine64.git] / programs / notepad / license.c
blob1fcef2336e69043d0b509cd94b57e6d939872e4d
1 /*
2 * Notepad (license.h)
4 * Copyright 1997,98 Marcel Baur <mbaur@g26.ethz.ch>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <windows.h>
22 #include "license.h"
24 VOID WineLicense(HWND Wnd)
26 /* FIXME: should load strings from resources */
27 LICENSE *License = &WineLicense_En;
28 MessageBox(Wnd, License->License, License->LicenseCaption,
29 MB_ICONINFORMATION | MB_OK);
33 VOID WineWarranty(HWND Wnd)
35 /* FIXME: should load strings from resources */
36 LICENSE *License = &WineLicense_En;
37 MessageBox(Wnd, License->Warranty, License->WarrantyCaption,
38 MB_ICONEXCLAMATION | MB_OK);