Update libretro-common files

This commit is contained in:
retro-wertz
2017-08-29 19:16:37 +08:00
parent 8c163bf0ed
commit b26b68244f
3 changed files with 12 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
/* Copyright (C) 2010-2015 The RetroArch team
/* Copyright (C) 2010-2017 The RetroArch team
*
* ---------------------------------------------------------------------------------------
* The following license statement only applies to this file (memory_stream.h).
@@ -26,6 +26,10 @@
#include <stdint.h>
#include <stddef.h>
#include <retro_common_api.h>
RETRO_BEGIN_DECLS
typedef struct memstream memstream_t;
memstream_t *memstream_open(unsigned writing);
@@ -52,4 +56,6 @@ void memstream_set_buffer(uint8_t *buffer, size_t size);
size_t memstream_get_last_size(void);
RETRO_END_DECLS
#endif