-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdpi.h
29 lines (26 loc) · 1012 Bytes
/
dpi.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
* Bespin library for Qt style, KWin decoration and everythng else
* Copyright 2009-2014 by Thomas Lübking <[email protected]>
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License version 2
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
namespace BE {
namespace Dpi {
typedef struct BLIB_EXPORT
{
int f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f12, f13, f16, f17, f32, f18, f20, f80, f22, f64;
} Target;
extern BLIB_EXPORT Target target;
}
}