Francois Gouget : include: Remove uneeded __RPC_FAR references.

Alexandre Julliard julliard at wine.codeweavers.com
Mon May 15 04:51:56 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: adf52cda0454de92ce635698b2834458d1bb218e
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=adf52cda0454de92ce635698b2834458d1bb218e

Author: Francois Gouget <fgouget at free.fr>
Date:   Fri May 12 00:22:21 2006 +0200

include: Remove uneeded __RPC_FAR references.

---

 include/dmusici.h |    6 +++---
 include/rpcdce.h  |   12 ++++++------
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/include/dmusici.h b/include/dmusici.h
index 90bd054..3d871a5 100644
--- a/include/dmusici.h
+++ b/include/dmusici.h
@@ -134,9 +134,9 @@ typedef struct IDirectMusicContainer *LP
 typedef struct IDirectMusicContainer    IDirectMusicContainer8,    *LPDIRECTMUSICCONTAINER8;
 
 /* RPC declarations */
-typedef struct IDirectMusicBand   __RPC_FAR *LPDMUS_BAND;
-typedef struct IDirectMusicLoader __RPC_FAR *LPDMUS_LOADER;
-typedef struct IDirectMusicObject __RPC_FAR *LPDMUS_OBJECT;
+typedef struct IDirectMusicBand   *LPDMUS_BAND;
+typedef struct IDirectMusicLoader *LPDMUS_LOADER;
+typedef struct IDirectMusicObject *LPDMUS_OBJECT;
 
 /* GUIDs - all types loader */
 DEFINE_GUID(GUID_DirectMusicAllTypes,         0xd2ac2893,0xb39b,0x11d1,0x87,0x04,0x00,0x60,0x08,0x93,0xb1,0xbd);
diff --git a/include/rpcdce.h b/include/rpcdce.h
index 2510a18..de808ee 100644
--- a/include/rpcdce.h
+++ b/include/rpcdce.h
@@ -149,22 +149,22 @@ typedef struct _RPC_POLICY
 
 typedef struct _SEC_WINNT_AUTH_IDENTITY_W
 {
-    unsigned short __RPC_FAR* User;
+    unsigned short* User;
     unsigned long UserLength;
-    unsigned short __RPC_FAR* Domain;
+    unsigned short* Domain;
     unsigned long DomainLength;
-    unsigned short __RPC_FAR* Password;
+    unsigned short* Password;
     unsigned long PasswordLength;
     unsigned long Flags;
 } SEC_WINNT_AUTH_IDENTITY_W, *PSEC_WINNT_AUTH_IDENTITY_W;
 
 typedef struct _SEC_WINNT_AUTH_IDENTITY_A
 {
-    unsigned char __RPC_FAR* User;
+    unsigned char* User;
     unsigned long UserLength;
-    unsigned char __RPC_FAR* Domain;
+    unsigned char* Domain;
     unsigned long DomainLength;
-    unsigned char __RPC_FAR* Password;
+    unsigned char* Password;
     unsigned long PasswordLength;
     unsigned long Flags;
 } SEC_WINNT_AUTH_IDENTITY_A, *PSEC_WINNT_AUTH_IDENTITY_A;




More information about the wine-cvs mailing list