server: Added access rights mapping to process and thread objects.
[wine/multimedia.git] / programs / winefile / license.c
blob12193f8d2ed7818d2eb7a46558aa5c6628fcd7d2
1 /*
2 * Copyright 2000 Martin Fuchs
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #include "winefile.h"
21 #ifdef __WINE__
23 static const CHAR LicenseCaption[] = "LICENSE";
24 static const CHAR License[] =
25 "This library is free software; you can redistribute it and/or "
26 "modify it under the terms of the GNU Lesser General Public "
27 "License as published by the Free Software Foundation; either "
28 "version 2.1 of the License, or (at your option) any later version.\n"
30 "This library is distributed in the hope that it will be useful, "
31 "but WITHOUT ANY WARRANTY; without even the implied warranty of "
32 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU "
33 "Lesser General Public License for more details.\n"
35 "You should have received a copy of the GNU Lesser General Public "
36 "License along with this library; if not, write to the Free Software "
37 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA";
39 static const CHAR NoWarrantyCaption[] = "NO WARRANTY";
40 static const CHAR NoWarranty[] =
41 "This library is distributed in the hope that it will be useful, "
42 "but WITHOUT ANY WARRANTY; without even the implied warranty of "
43 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU "
44 "Lesser General Public License for more details.";
46 VOID WineLicense(HWND hwnd)
48 MessageBoxA(hwnd, License, LicenseCaption, MB_ICONINFORMATION|MB_OK);
51 VOID WineWarranty(HWND hwnd)
53 MessageBoxA(hwnd, NoWarranty, NoWarrantyCaption, MB_ICONEXCLAMATION|MB_OK);
56 #endif