Moved DCX_* constants to winuser.h.
[wine/multimedia.git] / programs / notepad / license.c
blobfad6880e4cc61873d1b5f4d849355eb55c2a252a
1 /*
2 * Notepad (license.h)
4 * Copyright 1997,98 Marcel Baur <mbaur@g26.ethz.ch>
5 * To be distributed under the Wine License
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);