BShape: Style fixes for docs

This commit is contained in:
John Scipione
2014-07-14 19:02:44 -04:00
parent 22da33b202
commit db1ef05aef
3 changed files with 78 additions and 52 deletions
+7 -5
View File
@@ -1,14 +1,15 @@
/*
* Copyright 2003-2010, Haiku.
* Copyright 2003-2010 Haiku, Inc. All rights reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
* Adrian Oanca <[email protected]>
* Axel Dörfler, [email protected]
* Adrian Oanca, [email protected]
*/
#ifndef SHAPE_PRIVATE_H
#define SHAPE_PRIVATE_H
#define OP_LINETO 0x10000000
#define OP_BEZIERTO 0x20000000
#define OP_CLOSE 0x40000000
@@ -20,12 +21,13 @@
struct shape_data {
uint32 *opList;
uint32* opList;
int32 opCount;
int32 opSize;
BPoint *ptList;
BPoint* ptList;
int32 ptCount;
int32 ptSize;
};
#endif
#endif // SHAPE_PRIVATE_H