Start namespacing config file stuff

This commit is contained in:
twinaphex 2014-10-22 03:26:31 +02:00
parent ec0792dbbe
commit 156b2e44fc
3 changed files with 6 additions and 6 deletions

View File

@ -14,8 +14,8 @@
*/
#ifndef __CONFIG_FILE_H
#define __CONFIG_FILE_H
#ifndef __LIBRETRO_SDK_CONFIG_FILE_H
#define __LIBRETRO_SDK_CONFIG_FILE_H
#ifdef __cplusplus
extern "C" {

View File

@ -14,8 +14,8 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef CONFIG_FILE_MACROS_H__
#define CONFIG_FILE_MACROS_H__
#ifndef __LIBRETRO_SDK_CONFIG_FILE_MACROS_H__
#define __LIBRETRO_SDK_CONFIG_FILE_MACROS_H__
/* Macros to ease config getting. */
#include <stdint.h>

View File

@ -14,8 +14,8 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _CONFIG_FILE_USERDATA_H
#define _CONFIG_FILE_USERDATA_H
#ifndef _LIBRETRO_SDK_CONFIG_FILE_USERDATA_H
#define _LIBRETRO_SDK_CONFIG_FILE_USERDATA_H
#include <string.h>
#include "config_file.h"