Index: /trunk/src/VBox/Main/src-client/EbmlWriter.cpp
===================================================================
--- /trunk/src/VBox/Main/src-client/EbmlWriter.cpp	(revision 68332)
+++ /trunk/src/VBox/Main/src-client/EbmlWriter.cpp	(revision 68333)
@@ -57,5 +57,5 @@
     std::stack<EbmlSubElement> m_Elements;
     /** The file's handle. */
-    RTFILE                     m_File;
+    RTFILE                     m_hFile;
     /** The file's name (path). */
     Utf8Str                    m_strFile;
@@ -64,5 +64,5 @@
 
     Ebml(void)
-        : m_File(NIL_RTFILE) { }
+        : m_hFile(NIL_RTFILE) { }
 
     virtual ~Ebml(void) { close(); }
@@ -73,5 +73,5 @@
     inline int create(const char *a_pszFilename, uint64_t fOpen)
     {
-        int rc = RTFileOpen(&m_File, a_pszFilename, fOpen);
+        int rc = RTFileOpen(&m_hFile, a_pszFilename, fOpen);
         if (RT_SUCCESS(rc))
         {
@@ -91,5 +91,5 @@
     inline uint64_t getFileSize(void)
     {
-        return RTFileTell(m_File);
+        return RTFileTell(m_hFile);
     }
 
@@ -97,5 +97,5 @@
     inline const RTFILE &getFile(void)
     {
-        return m_File;
+        return m_hFile;
     }
 
@@ -104,5 +104,5 @@
     {
         RTFOFF pcbFree;
-        int rc = RTFileQueryFsSizes(m_File, NULL, &pcbFree, 0, 0);
+        int rc = RTFileQueryFsSizes(m_hFile, NULL, &pcbFree, 0, 0);
         return (RT_SUCCESS(rc)? (uint64_t)pcbFree : UINT64_MAX);
     }
@@ -118,6 +118,6 @@
                    m_Elements.size(), m_Elements.top().classId));
 
-        RTFileClose(m_File);
-        m_File = NIL_RTFILE;
+        RTFileClose(m_hFile);
+        m_hFile = NIL_RTFILE;
 
         m_strFile = "";
@@ -131,5 +131,5 @@
     inline bool isOpen(void)
     {
-        return RTFileIsValid(m_File);
+        return RTFileIsValid(m_hFile);
     }
 
@@ -139,5 +139,5 @@
         writeClassId(classId);
         /* store the current file offset. */
-        m_Elements.push(EbmlSubElement(RTFileTell(m_File), classId));
+        m_Elements.push(EbmlSubElement(RTFileTell(m_hFile), classId));
         /* Indicates that size of the element
          * is unkown (as according to EBML specs).
@@ -161,11 +161,11 @@
 #endif
 
-        uint64_t uPos = RTFileTell(m_File);
+        uint64_t uPos = RTFileTell(m_hFile);
         uint64_t uSize = uPos - m_Elements.top().offset - 8;
-        RTFileSeek(m_File, m_Elements.top().offset, RTFILE_SEEK_BEGIN, NULL);
+        RTFileSeek(m_hFile, m_Elements.top().offset, RTFILE_SEEK_BEGIN, NULL);
 
         /* Make sure that size will be serialized as uint64_t. */
         writeUnsignedInteger(uSize | UINT64_C(0x0100000000000000));
-        RTFileSeek(m_File, uPos, RTFILE_SEEK_BEGIN, NULL);
+        RTFileSeek(m_hFile, uPos, RTFILE_SEEK_BEGIN, NULL);
         m_Elements.pop();
         return *this;
@@ -230,5 +230,5 @@
     inline int write(const void *data, size_t size)
     {
-        return RTFileWrite(m_File, data, size, NULL);
+        return RTFileWrite(m_hFile, data, size, NULL);
     }
 
