Remove uneeded __RPC_FAR references

Francois Gouget fgouget at free.fr
Thu May 11 17:22:21 CDT 2006


We don't need it (never have?) so there is no point leaving it in our 
type definitions.


Changelog:

  * include/dmusici.h
    include/rpcdce.h

    Francois Gouget <fgouget at free.fr>
    Remove uneeded __RPC_FAR references

-- 
Francois Gouget <fgouget at free.fr>              http://fgouget.free.fr/
    Nouvelle version : les anciens bogues ont été remplacés par de nouveaux.
-------------- next part --------------
Index: include/dmusici.h
===================================================================
RCS file: /home/wine/wine/include/dmusici.h,v
retrieving revision 1.12
diff -u -p -r1.12 dmusici.h
--- include/dmusici.h	26 Jul 2005 18:32:53 -0000	1.12
+++ include/dmusici.h	11 May 2006 20:57:55 -0000
@@ -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);
Index: include/rpcdce.h
===================================================================
RCS file: /home/wine/wine/include/rpcdce.h,v
retrieving revision 1.34
diff -u -p -r1.34 rpcdce.h
--- include/rpcdce.h	5 May 2006 17:12:49 -0000	1.34
+++ include/rpcdce.h	11 May 2006 20:57:55 -0000
@@ -149,22 +151,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-patches mailing list