1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-07 08:28:57 +00:00

Not that it makes a lot of difference, there being no names to mangle, but moved the closing #ifdef __cplusplus to the idiomatic place.

This commit is contained in:
Thomas Harte 2015-08-18 20:33:59 -04:00
parent bc805a90fe
commit 88d5064737

View File

@ -32,11 +32,6 @@ typedef struct {
uint8_t *runs;
} CRTFrame;
#ifdef __cplusplus
}
#endif
typedef uint16_t kCRTPositionType;
typedef uint16_t kCRTTexCoordType;
typedef uint8_t kCRTLateralType;
@ -49,4 +44,8 @@ static const size_t kCRTVertexOffsetOfPhase = 9;
static const int kCRTSizeOfVertex = 10;
#ifdef __cplusplus
}
#endif
#endif /* CRTFrame_h */