And fixed up loose ends preventing a build. Let's build!

This commit is contained in:
Pietro Gagliardi 2018-03-08 22:44:35 -05:00
parent 5535c43bd8
commit 9661d14262
2 changed files with 9 additions and 1 deletions

View File

@ -1,13 +1,15 @@
# 3 june 2016
list(APPEND _LIBUI_SOURCES
common/attribute.c
common/attrlist.c
common/attrstr.c
common/areaevents.c
common/control.c
common/debug.c
common/drawtext.c
# common/drawtext.c
common/matrix.c
common/opentype.c
common/shouldquit.c
common/userbugs.c
common/utf.c

View File

@ -1,5 +1,11 @@
// 19 february 2018
// TODO remove when done migrating these functions
#define uiprivNew(x) uiNew(x)
#define uiprivAlloc(x, y) uiAlloc(x, y)
#define uiprivRealloc(x, y) uiRealloc(x, y)
#define uiprivFree(x) uiFree(x)
// attribute.c
extern uiAttribute *uiprivAttributeRetain(uiAttribute *a);
extern void uiprivAttributeRelease(uiAttribute *a);