- Timestamp:
 - Feb 18, 2002, 11:57:27 PM (24 years ago)
 - Location:
 - trunk/src/ole32
 - Files:
 - 
      
- 2 edited
 
- 
          
  compobj_private.h (modified) (2 diffs)
 - 
          
  marshal.c (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/src/ole32/compobj_private.h
r7926 r7954 17 17 extern HRESULT create_marshalled_proxy(REFCLSID rclsid, REFIID iid, LPVOID *ppv); 18 18 19 #ifndef __WIN32OS2__ 19 20 inline static HRESULT 20 21 get_facbuf_for_iid(REFIID riid,IPSFactoryBuffer **facbuf) { … … 26 27 return CoGetClassObject(&pxclsid,CLSCTX_INPROC_SERVER,NULL,&IID_IPSFactoryBuffer,(LPVOID*)facbuf); 27 28 } 29 #endif 28 30 29 31 #define PIPEPREF "\\\\.\\pipe\\"  - 
      
trunk/src/ole32/marshal.c
r7926 r7954 63 63 static int nrofproxies = 0; 64 64 65 #ifdef __WIN32OS2__ 66 inline static HRESULT 67 get_facbuf_for_iid(REFIID riid,IPSFactoryBuffer **facbuf) { 68 HRESULT hres; 69 CLSID pxclsid; 70 71 if ((hres = CoGetPSClsid(riid,&pxclsid))) 72 return hres; 73 return CoGetClassObject(&pxclsid,CLSCTX_INPROC_SERVER,NULL,&IID_IPSFactoryBuffer,(LPVOID*)facbuf); 74 } 75 #endif 76 77 65 78 HRESULT 66 79 MARSHAL_Find_Stub_Server(wine_marshal_id *mid,LPUNKNOWN *punk) {  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  