~ubuntu-branches/ubuntu/raring/virtualbox-ose/raring

« back to all changes in this revision

Viewing changes to src/VBox/Runtime/include/internal/magics.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-01-30 23:27:25 UTC
  • mfrom: (0.3.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20110130232725-2ouajjd2ggdet0zd
Tags: 4.0.2-dfsg-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Add Apport hook.
    - debian/virtualbox-ose.files/source_virtualbox-ose.py
    - debian/virtualbox-ose.install
  - Drop *-source packages.
* Drop ubuntu-01-fix-build-gcc45.patch, fixed upstream.
* Drop ubuntu-02-as-needed.patch, added to the Debian package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: magics.h $ */
 
1
/* $Id: magics.h 35213 2010-12-16 23:54:29Z vboxsync $ */
2
2
/** @file
3
3
 * IPRT - Internal header defining The Magic Numbers.
4
4
 */
104
104
#define RTSEMEVENT_MAGIC                UINT32_C(0x19601110)
105
105
/** Magic for the multiple release event semaphore structure. (Isaac Asimov) */
106
106
#define RTSEMEVENTMULTI_MAGIC           UINT32_C(0x19200102)
 
107
/** Dead magic value for multiple release event semaphore structures. */
 
108
#define RTSEMEVENTMULTI_MAGIC_DEAD      UINT32_C(0x19920406)
107
109
/** Magic value for RTSEMFASTMUTEXINTERNAL::u32Magic. (John Ronald Reuel Tolkien) */
108
110
#define RTSEMFASTMUTEX_MAGIC            UINT32_C(0x18920103)
109
111
/** Dead magic value for RTSEMFASTMUTEXINTERNAL::u32Magic. */
150
152
#define RTS3_MAGIC                      UINT32_C(0x18750401)
151
153
/** The value of RTS3::u32Magic after RTS3Destroy().  */
152
154
#define RTS3_MAGIC_DEAD                 UINT32_C(0x19320210)
 
155
/** The value of RTTAR::u32Magic. (Donald Ervin Knuth) */
 
156
#define RTTAR_MAGIC                     UINT32_C(0x19380110)
 
157
/** The value of RTTAR::u32Magic after RTTarClose(). */
 
158
#define RTTAR_MAGIC_DEAD                ~RTTAR_MAGIC
 
159
/** The value of RTTARFILE::u32Magic. (Abraham Stoker) */
 
160
#define RTTARFILE_MAGIC                 UINT32_C(0x18471108)
 
161
/** The value of RTTARFILE::u32Magic after RTTarFileClose(). */
 
162
#define RTTARFILE_MAGIC_DEAD            UINT32_C(0x19120420)
 
163
/** The value of RTVFSOBJINTERNAL::u32Magic. (Yasunari Kawabata) */
 
164
#define RTVFSOBJ_MAGIC                  UINT32_C(0x18990614)
 
165
/** The value of RTVFSOBJINTERNAL::u32Magic arter close. */
 
166
#define RTVFSOBJ_MAGIC_DEAD             UINT32_C(0x19720416)
 
167
/** The value of RTVFSINTERNAL::u32Magic. (Sir Kingsley William Amis) */
 
168
#define RTVFS_MAGIC                     UINT32_C(0x19220416)
 
169
/** The value of RTVFSINTERNAL::u32Magic after close.  */
 
170
#define RTVFS_MAGIC_DEAD                UINT32_C(0x19951022)
 
171
/** The value of RTVFSFSSTREAMINTERNAL::u32Magic. (William McGuire "Bill" Bryson) */
 
172
#define RTVFSFSSTREAM_MAGIC             UINT32_C(0x19511208)
 
173
/** The value of RTVFSFSSTREAMINTERNAL::u32Magic after close */
 
174
#define RTVFSFSSTREAM_MAGIC_DEAD        (~RTVFSFSSTREAM_MAGIC)
 
175
/** The value of RTVFSDIRINTERNAL::u32Magic. (Franklin Patrick Herbert, Jr.) */
 
176
#define RTVFSDIR_MAGIC                  UINT32_C(0x19201008)
 
177
/** The value of RTVFSDIRINTERNAL::u32Magic after close. */
 
178
#define RTVFSDIR_MAGIC_DEAD             UINT32_C(0x19860211)
 
179
/** The value of RTVFSFILEINTERNAL::u32Magic. (Charles John Huffam Dickens) */
 
180
#define RTVFSFILE_MAGIC                 UINT32_C(0x18120207)
 
181
/** The value of RTVFSFILEINTERNAL::u32Magic after close. */
 
182
#define RTVFSFILE_MAGIC_DEAD            UINT32_C(0x18700609)
 
183
/** The value of RTVFSIOSTREAMINTERNAL::u32Magic. (Ernest Miller Hemingway) */
 
184
#define RTVFSIOSTREAM_MAGIC             UINT32_C(0x18990721)
 
185
/** The value of RTVFSIOSTREAMINTERNAL::u32Magic after close. */
 
186
#define RTVFSIOSTREAM_MAGIC_DEAD        UINT32_C(0x19610702)
 
187
/** The value of RTVFSSYMLINKINTERNAL::u32Magic. (Francis Scott Key Fitzgerald) */
 
188
#define RTVFSSYMLINK_MAGIC              UINT32_C(0x18960924)
 
189
/** The value of RTVFSSYMLINKINTERNAL::u32Magic after close. */
 
190
#define RTVFSSYMLINK_MAGIC_DEAD         UINT32_C(0x19401221)
153
191
 
154
192
/** @} */
155
193