Serious-Engine/Sources/Engine/Base/Registry.h
2016-03-11 15:57:17 +02:00

16 lines
424 B
C

/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
#ifndef SE_INCL_REGISTRY_H
#define SE_INCL_REGISTRY_H
#ifdef PRAGMA_ONCE
#pragma once
#endif
ENGINE_API BOOL REG_GetString(const CTString &strKey, CTString &strString);
ENGINE_API BOOL REG_SetString(const CTString &strKey, const CTString &strString);
ENGINE_API BOOL REG_GetLong(const CTString &strKey, ULONG &ulLong);
#endif /* include-once check. */