~steve-sk2/mingw-w64/oneiric

« back to all changes in this revision

Viewing changes to mingw-w64-crt/libsrc/tsuserex_i.c

  • Committer: Bazaar Package Importer
  • Author(s): Stephen Kitt
  • Date: 2010-11-18 00:04:46 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101118000446-xe24b423su55onyl
Tags: 1.0+20101003-1
* New maintainer. (Closes: #594371.)
* New upstream snapshot:
  - Includes getopt.h. (Closes: #569914.)
* Build g++ for Win64. (Closes: #600451.)
* Standards-Version 3.9.1 (new packaging).
* Include patch from
  http://mingw-w64.svn.sourceforge.net/viewvc/mingw-w64?view=revision&revision=3715
  as suggested by Rafaël Carré.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * This file has no copyright assigned and is placed in the Public Domain.
 
3
 * This file is part of the w64 mingw-runtime package.
 
4
 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
 
5
 */
 
6
#ifdef __cplusplus
 
7
extern "C" {
 
8
#endif
 
9
 
 
10
#include <rpc.h>
 
11
#include <rpcndr.h>
 
12
 
 
13
#ifdef _MIDL_USE_GUIDDEF_
 
14
 
 
15
#ifndef INITGUID
 
16
#define INITGUID
 
17
#include <guiddef.h>
 
18
#undef INITGUID
 
19
#else
 
20
#include <guiddef.h>
 
21
#endif
 
22
 
 
23
#define MIDL_DEFINE_GUID(type,name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) DEFINE_GUID(name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8)
 
24
#else
 
25
 
 
26
#ifndef __IID_DEFINED__
 
27
#define __IID_DEFINED__
 
28
  typedef struct _IID {
 
29
    unsigned long x;
 
30
    unsigned short s1;
 
31
    unsigned short s2;
 
32
    unsigned char c[8];
 
33
  } IID;
 
34
#endif
 
35
 
 
36
#ifndef CLSID_DEFINED
 
37
#define CLSID_DEFINED
 
38
  typedef IID CLSID;
 
39
#endif
 
40
 
 
41
#define MIDL_DEFINE_GUID(type,name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) const type name = {l,w1,w2,{b1,b2,b3,b4,b5,b6,b7,b8}}
 
42
#endif
 
43
 
 
44
  MIDL_DEFINE_GUID(IID,LIBID_TSUSEREXLib,0x45413F04,0xDF86,0x11D1,0xAE,0x27,0x00,0xC0,0x4F,0xA3,0x58,0x13);
 
45
  MIDL_DEFINE_GUID(CLSID,CLSID_TSUserExInterfaces,0x0910dd01,0xdf8c,0x11d1,0xae,0x27,0x00,0xc0,0x4f,0xa3,0x58,0x13);
 
46
  MIDL_DEFINE_GUID(IID,IID_IADsTSUserEx,0xC4930E79,0x2989,0x4462,0x8A,0x60,0x2F,0xCF,0x2F,0x29,0x55,0xEF);
 
47
  MIDL_DEFINE_GUID(CLSID,CLSID_ADsTSUserEx,0xE2E9CAE6,0x1E7B,0x4B8E,0xBA,0xBD,0xE9,0xBF,0x62,0x92,0xAC,0x29);
 
48
 
 
49
#undef MIDL_DEFINE_GUID
 
50
 
 
51
#ifdef __cplusplus
 
52
}
 
53
#endif