Skip to content

Commit

Permalink
feat(css): make CSSFontStyle_* functions public
Browse files Browse the repository at this point in the history
  • Loading branch information
lc-soft committed Oct 3, 2019
1 parent e246843 commit 568c915
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions include/LCUI/gui/css_fontstyle.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* css_fontstyle.h -- CSS font style parse and operation set.
*
* Copyright (c) 2018, Liu chao <[email protected]> All rights reserved.
* Copyright (c) 2018-2019, Liu chao <[email protected]> All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
Expand Down Expand Up @@ -71,19 +71,19 @@ typedef struct LCUI_CSSFontStyleRec_ {

/* clang-format off */

int LCUI_GetFontStyleKey(int key);
LCUI_API int LCUI_GetFontStyleKey(int key);

void CSSFontStyle_Init(LCUI_CSSFontStyle fs);
LCUI_API void CSSFontStyle_Init(LCUI_CSSFontStyle fs);

void CSSFontStyle_Destroy(LCUI_CSSFontStyle fs);
LCUI_API void CSSFontStyle_Destroy(LCUI_CSSFontStyle fs);

void CSSFontStyle_Compute(LCUI_CSSFontStyle fs, LCUI_StyleSheet ss);
LCUI_API void CSSFontStyle_Compute(LCUI_CSSFontStyle fs, LCUI_StyleSheet ss);

void CSSFontStyle_GetTextStyle(LCUI_CSSFontStyle fs, LCUI_TextStyle ts);
LCUI_API void CSSFontStyle_GetTextStyle(LCUI_CSSFontStyle fs, LCUI_TextStyle ts);

void LCUI_InitCSSFontStyle(void);
LCUI_API void LCUI_InitCSSFontStyle(void);

void LCUI_FreeCSSFontStyle(void);
LCUI_API void LCUI_FreeCSSFontStyle(void);

LCUI_END_HEADER

Expand Down

0 comments on commit 568c915

Please sign in to comment.