use const pointers for file loading and booleans for animation system return values passed as pointers.

This commit is contained in:
2013-03-17 19:13:04 +00:00
parent 16b82845ee
commit 09c41019a8
20 changed files with 65 additions and 63 deletions

View File

@@ -74,16 +74,16 @@ void BLO_blendhandle_print_sizes(BlendHandle *, void *);
/* Access routines used by filesel. */
BlendHandle *BLO_blendhandle_from_file(char *file, ReportList *reports)
BlendHandle *BLO_blendhandle_from_file(const char *filepath, ReportList *reports)
{
BlendHandle *bh;
bh = (BlendHandle *)blo_openblenderfile(file, reports);
bh = (BlendHandle *)blo_openblenderfile(filepath, reports);
return bh;
}
BlendHandle *BLO_blendhandle_from_memory(void *mem, int memsize)
BlendHandle *BLO_blendhandle_from_memory(const void *mem, int memsize)
{
BlendHandle *bh;
@@ -271,7 +271,7 @@ BlendFileData *BLO_read_from_file(const char *filepath, ReportList *reports)
return bfd;
}
BlendFileData *BLO_read_from_memory(void *mem, int memsize, ReportList *reports)
BlendFileData *BLO_read_from_memory(const void *mem, int memsize, ReportList *reports)
{
BlendFileData *bfd = NULL;
FileData *fd;