mirror of
https://github.com/reactos/reactos.git
synced 2025-05-07 10:46:58 +00:00

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
14 lines
489 B
C
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
|