many functions in blender are not marked static but should be.

most local modifier,GPU,ImBuf and Interface functions are now static.

also fixed an error were the fluid modifier definition and the header didnt have the same number of args.
This commit is contained in:
2011-02-13 14:16:36 +00:00
parent 63cc6b44e7
commit 4124804b4e
54 changed files with 162 additions and 131 deletions

View File

@@ -760,6 +760,10 @@ void uiStyleFontDrawRotated(struct uiFontStyle *fs, struct rcti *rect, const cha
int UI_GetStringWidth(const char *str); // XXX temp
void UI_DrawString(float x, float y, const char *str); // XXX temp
void UI_DrawTriIcon(float x, float y, char dir);
/* linker workaround ack! */
void UI_template_fix_linking(void);
#endif /* UI_INTERFACE_H */