2012-04-15 16:54:38 +00:00
|
|
|
// This file is part of Notepad++ project
|
2021-01-23 03:23:47 +00:00
|
|
|
// Copyright (C)2021 Don HO <don.h@free.fr>
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// at your option any later version.
|
2011-04-20 22:21:08 +00:00
|
|
|
//
|
2012-04-15 16:54:38 +00:00
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2021-01-23 03:23:47 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2012-04-15 16:54:38 +00:00
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2021-01-23 03:23:47 +00:00
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2012-04-15 16:54:38 +00:00
|
|
|
|
2011-04-20 22:21:08 +00:00
|
|
|
|
|
|
|
#ifndef CLIPBOARDFORMATS_H
|
|
|
|
#define CLIPBOARDFORMATS_H
|
|
|
|
|
|
|
|
#define CF_HTML TEXT("HTML Format")
|
|
|
|
#define CF_RTF TEXT("Rich Text Format")
|
|
|
|
#define CF_NPPTEXTLEN TEXT("Notepad++ Binary Text Length")
|
|
|
|
|
|
|
|
#endif //CLIPBOARDFORMATS_H
|