4 * Copyright 1998 by Marcel Baur <mbaur@g26.ethz.ch>
5 * Adapted from Program Manager (Original by Ulrich Schmied)
11 VOID
WineLicense(HWND Wnd
)
13 /* FIXME: should load strings from resources */
14 LICENSE
*License
= &WineLicense_En
;
15 MessageBox(Wnd
, License
->License
, License
->LicenseCaption
,
16 MB_ICONINFORMATION
| MB_OK
);
20 VOID
WineWarranty(HWND Wnd
)
22 /* FIXME: should load strings from resources */
23 LICENSE
*License
= &WineLicense_En
;
24 MessageBox(Wnd
, License
->Warranty
, License
->WarrantyCaption
,
25 MB_ICONEXCLAMATION
| MB_OK
);