~ubuntu-branches/debian/lenny/mono/lenny

« back to all changes in this revision

Viewing changes to mono/io-layer/types.h

  • Committer: Bazaar Package Importer
  • Author(s): Debian Mono Group
  • Date: 2004-06-19 14:38:57 UTC
  • Revision ID: james.westby@ubuntu.com-20040619143857-pycck6oxgwd172zc
Tags: upstream-0.96
ImportĀ upstreamĀ versionĀ 0.96

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * types.h:  Generic type definitions
 
3
 *
 
4
 * Author:
 
5
 *      Dick Porter (dick@ximian.com)
 
6
 *
 
7
 * (C) 2002 Ximian, Inc.
 
8
 */
 
9
 
 
10
#ifndef _WAPI_TYPES_H_
 
11
#define _WAPI_TYPES_H_
 
12
 
 
13
#include <glib.h>
 
14
 
 
15
typedef union 
 
16
{
 
17
        struct 
 
18
        {
 
19
                guint32 LowPart;
 
20
                gint32 HighPart;
 
21
        } u;
 
22
        
 
23
        guint64 QuadPart;
 
24
} WapiLargeInteger;
 
25
 
 
26
#endif /* _WAPI_TYPES_H_ */