reactos/rosapps/applications/devutils/vgafontedit/customwndclasses.h
Colin Finck 57d74df773 [VGAFONTEDIT] Use the new header with SPDX license identifier and make the entire application GPL-2.0+
The code of the single GPL-2.0 only file "misc.c" was originally derived from GPL-2.0 only devmgmt.
I have now replaced it with the same code from LGPL-2.1+ mmc, which makes my application a full GPL-2.0+ work. This is legit, because I know that Thomas Weidenmueller is the original author of the "misc.c" code.

svn path=/trunk/; revision=75987
2017-09-29 13:58:14 +00:00

14 lines
489 B
C

/*
* PROJECT: ReactOS VGA Font Editor
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Header for custom defined window classes (needed by "precomp.h" and the resource files)
* COPYRIGHT: Copyright 2008 Colin Finck (colin@reactos.org)
*/
#ifndef __CUSTOMWNDCLASSES_H
#define __CUSTOMWNDCLASSES_H
#define EDIT_GLYPH_EDIT_CLASSW L"VGAFontEditEditGlyphEditClass"
#define EDIT_GLYPH_PREVIEW_CLASSW L"VGAFontEditEditGlyphPreviewClass"
#endif