Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2002-10-31 00:40:36 +0300
committerKent Mein <mein@cs.umn.edu>2002-10-31 00:40:36 +0300
commit59e07ab2a54fdfc38d1af78212b3ea7a13717024 (patch)
treea53cf103119f8c9e3e6a3a92b170fde920d72ebe /source/blender
parent01bff7038323d617fbc83a39e9072631ccbdd65f (diff)
Fixed // comments and converted them to /* */ (used by a c file)
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/readstreamglue/BLO_readStreamErrors.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/readstreamglue/BLO_readStreamErrors.h b/source/blender/readstreamglue/BLO_readStreamErrors.h
index 3635ef6345e..f49b0a45a0b 100644
--- a/source/blender/readstreamglue/BLO_readStreamErrors.h
+++ b/source/blender/readstreamglue/BLO_readStreamErrors.h
@@ -45,7 +45,7 @@ extern "C" {
#define BRS_SETSPECERR(x) ( (int)(x) << 7)
#define BRS_GETSPECERR(x) (( (int)(x) >> 7) & 7)
-// FUNCTION
+/* FUNCTION */
#define BRS_READSTREAMGLUE 1
#define BRS_READSTREAMLOOP 2
#define BRS_KEYSTORE 3
@@ -54,7 +54,7 @@ extern "C" {
#define BRS_DECRYPT 6
#define BRS_VERIFY 7
-// GENeric errors
+/* GENeric errors */
#define BRS_MALLOC 1
#define BRS_NULL 2
#define BRS_MAGIC 3
@@ -63,22 +63,22 @@ extern "C" {
#define BRS_DATALEN 6
#define BRS_STUB 7
-// READSTREAMGLUE specific
+/* READSTREAMGLUE specific */
#define BRS_UNKNOWN 1
-// READSTREAMFILE specific
+/* READSTREAMFILE specific */
#define BRS_NOTABLEND 1
#define BRS_READERROR 2
-// INFLATE specific
+/* INFLATE specific */
#define BRS_INFLATEERROR 1
-// DECRYPT specific
+/* DECRYPT specific */
#define BRS_RSANEWERROR 1
#define BRS_DECRYPTERROR 2
#define BRS_NOTOURPUBKEY 3
-// VERIFY specific
+/* VERIFY specific */
#define BRS_RSANEWERROR 1
#define BRS_SIGFAILED 2