Remove old link before creating the new one.
[wine.git] / programs / clock / license.c
blob263086397cec0becf7177b597a6752bfedfa1a9f
1 /*
2 * Clock (license.c)
4 * Copyright 1998 by Marcel Baur <mbaur@g26.ethz.ch>
5 * Adapted from Program Manager (Original by Ulrich Schmied)
6 */
8 #include "windows.h"
9 #include "license.h"
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);