aboutsummaryrefslogtreecommitdiff
path: root/dep/include/g3dlite/G3D/RegistryUtil.h
diff options
context:
space:
mode:
Diffstat (limited to 'dep/include/g3dlite/G3D/RegistryUtil.h')
-rw-r--r--dep/include/g3dlite/G3D/RegistryUtil.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/dep/include/g3dlite/G3D/RegistryUtil.h b/dep/include/g3dlite/G3D/RegistryUtil.h
index 97de8d06725..34e4ef8f144 100644
--- a/dep/include/g3dlite/G3D/RegistryUtil.h
+++ b/dep/include/g3dlite/G3D/RegistryUtil.h
@@ -21,7 +21,7 @@
namespace G3D {
-/**
+/**
Provides generalized Windows registry querying.
All key names are one string in the format:
@@ -49,10 +49,10 @@ public:
/** returns false if the key could not be read for any reason. */
static bool readInt32(const std::string& key, int32& valueData);
- /**
+ /**
Reads an arbitrary amount of data from a binary registry key.
returns false if the key could not be read for any reason.
-
+
@beta
@param valueData pointer to the output buffer of sufficient size. Pass NULL as valueData in order to have available data size returned in dataSize.
@param dataSize size of the output buffer. When NULL is passed for valueData, contains the size of available data on successful return.
@@ -65,10 +65,10 @@ public:
/** returns false if the key could not be written for any reason. */
static bool writeInt32(const std::string& key, int32 valueData);
- /**
+ /**
Writes an arbitrary amount of data to a binary registry key.
returns false if the key could not be written for any reason.
-
+
@param valueData pointer to the input buffer
@param dataSize size of the input buffer that should be written
*/