Simplified reg handling in CoGetClassObject, do not use RegQueryValueW.
[wine] / dlls / ole32 / compobj.c
1 /*
2  *      COMPOBJ library
3  *
4  *      Copyright 1995  Martin von Loewis
5  *      Copyright 1998  Justin Bradford
6  *      Copyright 1999  Francis Beaudet
7  *  Copyright 1999  Sylvain St-Germain
8  */
9
10 #include "config.h"
11
12 #include <stdlib.h>
13 #include <stdio.h>
14 #include <string.h>
15 #include <assert.h>
16 #include "windef.h"
17 #include "wtypes.h"
18 #include "wingdi.h"
19 #include "wine/winbase16.h"
20 #include "winerror.h"
21 #include "wine/winestring.h"
22 #include "wownt32.h"
23 #include "ole2ver.h"
24 #include "debugtools.h"
25 #include "heap.h"
26 #include "ldt.h"
27 #include "winreg.h"
28 #include "rpc.h"
29
30 #include "wine/obj_base.h"
31 #include "wine/obj_misc.h"
32 #include "wine/obj_storage.h"
33 #include "wine/obj_clientserver.h"
34
35 #include "ole.h"
36 #include "ifs.h"
37 #include "compobj.h"
38
39 DEFAULT_DEBUG_CHANNEL(ole);
40
41 /****************************************************************************
42  *  COM External Lock structures and methods declaration
43  *
44  *  This api provides a linked list to managed external references to 
45  *  COM objects.  
46  *
47  *  The public interface consists of three calls: 
48  *      COM_ExternalLockAddRef
49  *      COM_ExternalLockRelease
50  *      COM_ExternalLockFreeList
51  */
52
53 #define EL_END_OF_LIST 0
54 #define EL_NOT_FOUND   0
55
56 /*
57  * Declaration of the static structure that manage the 
58  * external lock to COM  objects.
59  */
60 typedef struct COM_ExternalLock     COM_ExternalLock;
61 typedef struct COM_ExternalLockList COM_ExternalLockList;
62
63 struct COM_ExternalLock
64 {
65   IUnknown         *pUnk;     /* IUnknown referenced */
66   ULONG            uRefCount; /* external lock counter to IUnknown object*/
67   COM_ExternalLock *next;     /* Pointer to next element in list */
68 };
69
70 struct COM_ExternalLockList
71 {
72   COM_ExternalLock *head;     /* head of list */
73 };
74
75 /*
76  * Declaration and initialization of the static structure that manages
77  * the external lock to COM objects.
78  */
79 static COM_ExternalLockList elList = { EL_END_OF_LIST };
80
81 /*
82  * Public Interface to the external lock list   
83  */
84 static void COM_ExternalLockFreeList();
85 static void COM_ExternalLockAddRef(IUnknown *pUnk);
86 static void COM_ExternalLockRelease(IUnknown *pUnk, BOOL bRelAll);
87 void COM_ExternalLockDump(); /* testing purposes, not static to avoid warning */
88
89 /*
90  * Private methods used to managed the linked list   
91  */
92 static BOOL COM_ExternalLockInsert(
93   IUnknown *pUnk);
94
95 static void COM_ExternalLockDelete(
96   COM_ExternalLock *element);
97
98 static COM_ExternalLock* COM_ExternalLockFind(
99   IUnknown *pUnk);
100
101 static COM_ExternalLock* COM_ExternalLockLocate(
102   COM_ExternalLock *element,
103   IUnknown         *pUnk);
104
105 /****************************************************************************
106  * This section defines variables internal to the COM module.
107  *
108  * TODO: Most of these things will have to be made thread-safe.
109  */
110 HINSTANCE16     COMPOBJ_hInstance = 0;
111 HINSTANCE       COMPOBJ_hInstance32 = 0;
112 static int      COMPOBJ_Attach = 0;
113
114 LPMALLOC16 currentMalloc16=NULL;
115 LPMALLOC currentMalloc32=NULL;
116
117 HTASK16 hETask = 0;
118 WORD Table_ETask[62];
119
120 /*
121  * This lock count counts the number of times CoInitialize is called. It is
122  * decreased every time CoUninitialize is called. When it hits 0, the COM
123  * libraries are freed
124  */
125 static ULONG s_COMLockCount = 0;
126
127 /*
128  * This linked list contains the list of registered class objects. These
129  * are mostly used to register the factories for out-of-proc servers of OLE
130  * objects.
131  *
132  * TODO: Make this data structure aware of inter-process communication. This
133  *       means that parts of this will be exported to the Wine Server.
134  */
135 typedef struct tagRegisteredClass
136 {
137   CLSID     classIdentifier;
138   LPUNKNOWN classObject;
139   DWORD     runContext;
140   DWORD     connectFlags;
141   DWORD     dwCookie;
142   struct tagRegisteredClass* nextClass;
143 } RegisteredClass;
144
145 static RegisteredClass* firstRegisteredClass = NULL;
146
147 /* this open DLL table belongs in a per process table, but my guess is that
148  * it shouldn't live in the kernel, so I'll put them out here in DLL
149  * space assuming that there is one OLE32 per process.
150  */
151 typedef struct tagOpenDll {
152   HINSTANCE hLibrary;       
153   struct tagOpenDll *next;
154 } OpenDll;
155
156 static OpenDll *openDllList = NULL; /* linked list of open dlls */
157
158 /*****************************************************************************
159  * This section contains prototypes to internal methods for this
160  * module
161  */
162 static HRESULT COM_GetRegisteredClassObject(REFCLSID    rclsid,
163                                             DWORD       dwClsContext,
164                                             LPUNKNOWN*  ppUnk);
165
166 static void COM_RevokeAllClasses();
167
168
169 /******************************************************************************
170  *           CoBuildVersion [COMPOBJ.1]
171  *
172  * RETURNS
173  *      Current build version, hiword is majornumber, loword is minornumber
174  */
175 DWORD WINAPI CoBuildVersion(void)
176 {
177     TRACE("Returning version %d, build %d.\n", rmm, rup);
178     return (rmm<<16)+rup;
179 }
180
181 /******************************************************************************
182  *              CoInitialize16  [COMPOBJ.2]
183  * Set the win16 IMalloc used for memory management
184  */
185 HRESULT WINAPI CoInitialize16(
186         LPVOID lpReserved       /* [in] pointer to win16 malloc interface */
187 ) {
188     currentMalloc16 = (LPMALLOC16)lpReserved;
189     return S_OK;
190 }
191
192 /******************************************************************************
193  *              CoInitialize    [OLE32.26]
194  *
195  * Initializes the COM libraries.
196  *
197  * See CoInitializeEx
198  */
199 HRESULT WINAPI CoInitialize(
200         LPVOID lpReserved       /* [in] pointer to win32 malloc interface
201                                    (obsolete, should be NULL) */
202
203 {
204   /*
205    * Just delegate to the newer method.
206    */
207   return CoInitializeEx(lpReserved, COINIT_APARTMENTTHREADED);
208 }
209
210 /******************************************************************************
211  *              CoInitializeEx  [OLE32.163]
212  *
213  * Initializes the COM libraries. The behavior used to set the win32 IMalloc
214  * used for memory management is obsolete.
215  *
216  * RETURNS
217  *  S_OK               if successful,
218  *  S_FALSE            if this function was called already.
219  *  RPC_E_CHANGED_MODE if a previous call to CoInitialize specified another
220  *                      threading model.
221  *
222  * BUGS
223  * Only the single threaded model is supported. As a result RPC_E_CHANGED_MODE 
224  * is never returned.
225  *
226  * See the windows documentation for more details.
227  */
228 HRESULT WINAPI CoInitializeEx(
229         LPVOID lpReserved,      /* [in] pointer to win32 malloc interface
230                                    (obsolete, should be NULL) */
231         DWORD dwCoInit          /* [in] A value from COINIT specifies the threading model */
232
233 {
234   HRESULT hr;
235
236   TRACE("(%p, %x)\n", lpReserved, (int)dwCoInit);
237
238   if (lpReserved!=NULL)
239   {
240     ERR("(%p, %x) - Bad parameter passed-in %p, must be an old Windows Application\n", lpReserved, (int)dwCoInit, lpReserved);
241   }
242
243   /*
244    * Check for unsupported features.
245    */
246   if (dwCoInit!=COINIT_APARTMENTTHREADED) 
247   {
248     FIXME(":(%p,%x): unsupported flag %x\n", lpReserved, (int)dwCoInit, (int)dwCoInit);
249     /* Hope for the best and continue anyway */
250   }
251
252   /*
253    * Check the lock count. If this is the first time going through the initialize
254    * process, we have to initialize the libraries.
255    */
256   if (s_COMLockCount==0)
257   {
258     /*
259      * Initialize the various COM libraries and data structures.
260      */
261     TRACE("() - Initializing the COM libraries\n");
262
263     RunningObjectTableImpl_Initialize();
264
265     hr = S_OK;
266   }
267   else
268     hr = S_FALSE;
269
270   /*
271    * Crank-up that lock count.
272    */
273   s_COMLockCount++;
274
275   return hr;
276 }
277
278 /***********************************************************************
279  *           CoUninitialize16   [COMPOBJ.3]
280  * Don't know what it does. 
281  * 3-Nov-98 -- this was originally misspelled, I changed it to what I
282  *   believe is the correct spelling
283  */
284 void WINAPI CoUninitialize16(void)
285 {
286   TRACE("()\n");
287   CoFreeAllLibraries();
288 }
289
290 /***********************************************************************
291  *           CoUninitialize   [OLE32.47]
292  *
293  * This method will release the COM libraries.
294  *
295  * See the windows documentation for more details.
296  */
297 void WINAPI CoUninitialize(void)
298 {
299   TRACE("()\n");
300   
301   /*
302    * Decrease the reference count.
303    */
304   s_COMLockCount--;
305   
306   /*
307    * If we are back to 0 locks on the COM library, make sure we free
308    * all the associated data structures.
309    */
310   if (s_COMLockCount==0)
311   {
312     /*
313      * Release the various COM libraries and data structures.
314      */
315     TRACE("() - Releasing the COM libraries\n");
316
317     RunningObjectTableImpl_UnInitialize();
318     /*
319      * Release the references to the registered class objects.
320      */
321     COM_RevokeAllClasses();
322
323     /*
324      * This will free the loaded COM Dlls.
325      */
326     CoFreeAllLibraries();
327
328     /*
329      * This will free list of external references to COM objects.
330      */
331     COM_ExternalLockFreeList();
332 }
333 }
334
335 /***********************************************************************
336  *           CoGetMalloc16    [COMPOBJ.4]
337  * RETURNS
338  *      The current win16 IMalloc
339  */
340 HRESULT WINAPI CoGetMalloc16(
341         DWORD dwMemContext,     /* [in] unknown */
342         LPMALLOC16 * lpMalloc   /* [out] current win16 malloc interface */
343 ) {
344     if(!currentMalloc16)
345         currentMalloc16 = IMalloc16_Constructor();
346     *lpMalloc = currentMalloc16;
347     return S_OK;
348 }
349
350 /******************************************************************************
351  *              CoGetMalloc     [OLE32.20]
352  *
353  * RETURNS
354  *      The current win32 IMalloc
355  */
356 HRESULT WINAPI CoGetMalloc(
357         DWORD dwMemContext,     /* [in] unknown */
358         LPMALLOC *lpMalloc      /* [out] current win32 malloc interface */
359 ) {
360     if(!currentMalloc32)
361         currentMalloc32 = IMalloc_Constructor();
362     *lpMalloc = currentMalloc32;
363     return S_OK;
364 }
365
366 /***********************************************************************
367  *           CoCreateStandardMalloc16 [COMPOBJ.71]
368  */
369 HRESULT WINAPI CoCreateStandardMalloc16(DWORD dwMemContext,
370                                           LPMALLOC16 *lpMalloc)
371 {
372     /* FIXME: docu says we shouldn't return the same allocator as in
373      * CoGetMalloc16 */
374     *lpMalloc = IMalloc16_Constructor();
375     return S_OK;
376 }
377
378 /******************************************************************************
379  *              CoDisconnectObject      [COMPOBJ.15]
380  */
381 HRESULT WINAPI CoDisconnectObject( LPUNKNOWN lpUnk, DWORD reserved )
382 {
383     TRACE("(%p, %lx)\n",lpUnk,reserved);
384     return S_OK;
385 }
386
387 /***********************************************************************
388  *           IsEqualGUID16 [COMPOBJ.18]
389  *
390  * Compares two Unique Identifiers.
391  *
392  * RETURNS
393  *      TRUE if equal
394  */
395 BOOL16 WINAPI IsEqualGUID16(
396         GUID* g1,       /* [in] unique id 1 */
397         GUID* g2        /* [in] unique id 2 */
398 ) {
399     return !memcmp( g1, g2, sizeof(GUID) );
400 }
401
402 /******************************************************************************
403  *              CLSIDFromString16       [COMPOBJ.20]
404  * Converts a unique identifier from its string representation into 
405  * the GUID struct.
406  *
407  * Class id: DWORD-WORD-WORD-BYTES[2]-BYTES[6] 
408  *
409  * RETURNS
410  *      the converted GUID
411  */
412 HRESULT WINAPI CLSIDFromString16(
413         LPCOLESTR16 idstr,      /* [in] string representation of guid */
414         CLSID *id               /* [out] GUID converted from string */
415 ) {
416   BYTE *s = (BYTE *) idstr;
417   BYTE *p;
418   int   i;
419   BYTE table[256];
420
421   if (!s)
422           s = "{00000000-0000-0000-0000-000000000000}";
423   else {  /* validate the CLSID string */
424
425       if (strlen(s) != 38)
426           return CO_E_CLASSSTRING;
427
428       if ((s[0]!='{') || (s[9]!='-') || (s[14]!='-') || (s[19]!='-') || (s[24]!='-') || (s[37]!='}'))
429           return CO_E_CLASSSTRING;
430
431       for (i=1; i<37; i++)
432       {
433           if ((i == 9)||(i == 14)||(i == 19)||(i == 24)) continue;
434           if (!(((s[i] >= '0') && (s[i] <= '9'))  ||
435                 ((s[i] >= 'a') && (s[i] <= 'f'))  ||
436                 ((s[i] >= 'A') && (s[i] <= 'F')))
437              )
438               return CO_E_CLASSSTRING;
439       }
440   }
441
442   TRACE("%s -> %p\n", s, id);
443
444   /* quick lookup table */
445   memset(table, 0, 256);
446
447   for (i = 0; i < 10; i++) {
448     table['0' + i] = i;
449   }
450   for (i = 0; i < 6; i++) {
451     table['A' + i] = i+10;
452     table['a' + i] = i+10;
453   }
454
455   /* in form {XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX} */
456
457   p = (BYTE *) id;
458
459   s++;  /* skip leading brace  */
460   for (i = 0; i < 4; i++) {
461     p[3 - i] = table[*s]<<4 | table[*(s+1)];
462     s += 2;
463   }
464   p += 4;
465   s++;  /* skip - */
466
467   for (i = 0; i < 2; i++) {
468     p[1-i] = table[*s]<<4 | table[*(s+1)];
469     s += 2;
470   }
471   p += 2;
472   s++;  /* skip - */
473
474   for (i = 0; i < 2; i++) {
475     p[1-i] = table[*s]<<4 | table[*(s+1)];
476     s += 2;
477   }
478   p += 2;
479   s++;  /* skip - */
480
481   /* these are just sequential bytes */
482   for (i = 0; i < 2; i++) {
483     *p++ = table[*s]<<4 | table[*(s+1)];
484     s += 2;
485   }
486   s++;  /* skip - */
487
488   for (i = 0; i < 6; i++) {
489     *p++ = table[*s]<<4 | table[*(s+1)];
490     s += 2;
491   }
492
493   return S_OK;
494 }
495
496 /******************************************************************************
497  *              CoCreateGuid[OLE32.6]
498  *
499  */
500 HRESULT WINAPI CoCreateGuid(
501         GUID *pguid /* [out] points to the GUID to initialize */
502 ) {
503     return UuidCreate(pguid);
504 }
505
506 /******************************************************************************
507  *              CLSIDFromString [OLE32.3]
508  * Converts a unique identifier from its string representation into 
509  * the GUID struct.
510  *
511  * UNDOCUMENTED
512  *      If idstr is not a valid CLSID string then it gets treated as a ProgID
513  *
514  * RETURNS
515  *      the converted GUID
516  */
517 HRESULT WINAPI CLSIDFromString(
518         LPCOLESTR idstr,        /* [in] string representation of GUID */
519         CLSID *id               /* [out] GUID represented by above string */
520 ) {
521     LPOLESTR16      xid = HEAP_strdupWtoA(GetProcessHeap(),0,idstr);
522     HRESULT       ret = CLSIDFromString16(xid,id);
523
524     HeapFree(GetProcessHeap(),0,xid);
525     if(ret != S_OK) { /* It appears a ProgID is also valid */
526         ret = CLSIDFromProgID(idstr, id);
527     }
528     return ret;
529 }
530
531 /******************************************************************************
532  *              WINE_StringFromCLSID    [Internal]
533  * Converts a GUID into the respective string representation.
534  *
535  * NOTES
536  *
537  * RETURNS
538  *      the string representation and HRESULT
539  */
540 static HRESULT WINE_StringFromCLSID(
541         const CLSID *id,        /* [in] GUID to be converted */
542         LPSTR idstr             /* [out] pointer to buffer to contain converted guid */
543 ) {
544   static const char *hex = "0123456789ABCDEF";
545   char *s;
546   int   i;
547
548   if (!id)
549         { ERR("called with id=Null\n");
550           *idstr = 0x00;
551           return E_FAIL;
552         }
553         
554   sprintf(idstr, "{%08lX-%04X-%04X-%02X%02X-",
555           id->Data1, id->Data2, id->Data3,
556           id->Data4[0], id->Data4[1]);
557   s = &idstr[25];
558
559   /* 6 hex bytes */
560   for (i = 2; i < 8; i++) {
561     *s++ = hex[id->Data4[i]>>4];
562     *s++ = hex[id->Data4[i] & 0xf];
563   }
564
565   *s++ = '}';
566   *s++ = '\0';
567
568   TRACE("%p->%s\n", id, idstr);
569
570   return S_OK;
571 }
572
573 /******************************************************************************
574  *              StringFromCLSID16       [COMPOBJ.19]
575  * Converts a GUID into the respective string representation.
576  * The target string is allocated using the OLE IMalloc.
577  * RETURNS
578  *      the string representation and HRESULT
579  */
580 HRESULT WINAPI StringFromCLSID16(
581         REFCLSID id,            /* [in] the GUID to be converted */
582         LPOLESTR16 *idstr       /* [out] a pointer to a to-be-allocated segmented pointer pointing to the resulting string */
583
584 ) {
585     LPMALLOC16  mllc;
586     HRESULT     ret;
587     DWORD       args[2];
588
589     ret = CoGetMalloc16(0,&mllc);
590     if (ret) return ret;
591
592     args[0] = (DWORD)mllc;
593     args[1] = 40;
594
595     /* No need for a Callback entry, we have WOWCallback16Ex which does
596      * everything we need.
597      */
598     if (!WOWCallback16Ex(
599         (DWORD)((ICOM_VTABLE(IMalloc16)*)PTR_SEG_TO_LIN(
600                 ICOM_VTBL(((LPMALLOC16)PTR_SEG_TO_LIN(mllc))))
601         )->fnAlloc,
602         WCB16_CDECL,
603         2*sizeof(DWORD),
604         (LPVOID)args,
605         (LPDWORD)idstr
606     )) {
607         WARN("CallTo16 IMalloc16 failed\n");
608         return E_FAIL;
609     }
610     return WINE_StringFromCLSID(id,PTR_SEG_TO_LIN(*idstr));
611 }
612
613 /******************************************************************************
614  *              StringFromCLSID [OLE32.151]
615  * Converts a GUID into the respective string representation.
616  * The target string is allocated using the OLE IMalloc.
617  * RETURNS
618  *      the string representation and HRESULT
619  */
620 HRESULT WINAPI StringFromCLSID(
621         REFCLSID id,            /* [in] the GUID to be converted */
622         LPOLESTR *idstr /* [out] a pointer to a to-be-allocated pointer pointing to the resulting string */
623 ) {
624         char            buf[80];
625         HRESULT       ret;
626         LPMALLOC        mllc;
627
628         if ((ret=CoGetMalloc(0,&mllc)))
629                 return ret;
630
631         ret=WINE_StringFromCLSID(id,buf);
632         if (!ret) {
633                 *idstr = IMalloc_Alloc(mllc,strlen(buf)*2+2);
634                 lstrcpyAtoW(*idstr,buf);
635         }
636         return ret;
637 }
638
639 /******************************************************************************
640  *              StringFromGUID2 [COMPOBJ.76] [OLE32.152]
641  *
642  * Converts a global unique identifier into a string of an API-
643  * specified fixed format. (The usual {.....} stuff.)
644  *
645  * RETURNS
646  *      The (UNICODE) string representation of the GUID in 'str'
647  *      The length of the resulting string, 0 if there was any problem.
648  */
649 INT WINAPI
650 StringFromGUID2(REFGUID id, LPOLESTR str, INT cmax)
651 {
652   char          xguid[80];
653
654   if (WINE_StringFromCLSID(id,xguid))
655         return 0;
656   if (strlen(xguid)>=cmax)
657         return 0;
658   lstrcpyAtoW(str,xguid);
659   return strlen(xguid) + 1;
660 }
661
662 /******************************************************************************
663  * ProgIDFromCLSID [OLE32.133]
664  * Converts a class id into the respective Program ID. (By using a registry lookup)
665  * RETURNS S_OK on success
666  * riid associated with the progid
667  */
668
669 HRESULT WINAPI ProgIDFromCLSID(
670   REFCLSID clsid, /* [in] class id as found in registry */
671   LPOLESTR *lplpszProgID/* [out] associated Prog ID */
672 )
673 {
674   char     strCLSID[50], *buf, *buf2;
675   DWORD    buf2len;
676   HKEY     xhkey;
677   LPMALLOC mllc;
678   HRESULT  ret = S_OK;
679
680   WINE_StringFromCLSID(clsid, strCLSID);
681
682   buf = HeapAlloc(GetProcessHeap(), 0, strlen(strCLSID)+14);
683   sprintf(buf,"CLSID\\%s\\ProgID", strCLSID);
684   if (RegOpenKeyA(HKEY_CLASSES_ROOT, buf, &xhkey))
685     ret = REGDB_E_CLASSNOTREG;
686
687   HeapFree(GetProcessHeap(), 0, buf);
688
689   if (ret == S_OK)
690   {
691     buf2 = HeapAlloc(GetProcessHeap(), 0, 255);
692     buf2len = 255;
693     if (RegQueryValueA(xhkey, NULL, buf2, &buf2len))
694       ret = REGDB_E_CLASSNOTREG;
695
696     if (ret == S_OK)
697     {
698       if (CoGetMalloc(0,&mllc))
699         ret = E_OUTOFMEMORY;
700       else
701       {
702         *lplpszProgID = IMalloc_Alloc(mllc, (buf2len+1)*2);
703         lstrcpyAtoW(*lplpszProgID, buf2);
704       }
705     }
706     HeapFree(GetProcessHeap(), 0, buf2);
707   }
708
709   RegCloseKey(xhkey);
710   return ret;
711 }
712
713 /******************************************************************************
714  *              CLSIDFromProgID16       [COMPOBJ.61]
715  * Converts a program id into the respective GUID. (By using a registry lookup)
716  * RETURNS
717  *      riid associated with the progid
718  */
719 HRESULT WINAPI CLSIDFromProgID16(
720         LPCOLESTR16 progid,     /* [in] program id as found in registry */
721         LPCLSID riid            /* [out] associated CLSID */
722 ) {
723         char    *buf,buf2[80];
724         DWORD   buf2len;
725         HRESULT err;
726         HKEY    xhkey;
727
728         buf = HeapAlloc(GetProcessHeap(),0,strlen(progid)+8);
729         sprintf(buf,"%s\\CLSID",progid);
730         if ((err=RegOpenKeyA(HKEY_CLASSES_ROOT,buf,&xhkey))) {
731                 HeapFree(GetProcessHeap(),0,buf);
732                 return CO_E_CLASSSTRING;
733         }
734         HeapFree(GetProcessHeap(),0,buf);
735         buf2len = sizeof(buf2);
736         if ((err=RegQueryValueA(xhkey,NULL,buf2,&buf2len))) {
737                 RegCloseKey(xhkey);
738                 return CO_E_CLASSSTRING;
739         }
740         RegCloseKey(xhkey);
741         return CLSIDFromString16(buf2,riid);
742 }
743
744 /******************************************************************************
745  *              CLSIDFromProgID [OLE32.2]
746  * Converts a program id into the respective GUID. (By using a registry lookup)
747  * RETURNS
748  *      riid associated with the progid
749  */
750 HRESULT WINAPI CLSIDFromProgID(
751         LPCOLESTR progid,       /* [in] program id as found in registry */
752         LPCLSID riid            /* [out] associated CLSID */
753 ) {
754         LPOLESTR16 pid = HEAP_strdupWtoA(GetProcessHeap(),0,progid);
755         HRESULT       ret = CLSIDFromProgID16(pid,riid);
756
757         HeapFree(GetProcessHeap(),0,pid);
758         return ret;
759 }
760
761
762
763 /*****************************************************************************
764  *             CoGetPSClsid [OLE32.22]
765  *
766  * This function returns the CLSID of the DLL that implements the proxy and stub
767  * for the specified interface. 
768  *
769  * It determines this by searching the 
770  * HKEY_CLASSES_ROOT\Interface\{string form of riid}\ProxyStubClsid32 in the registry
771  * and any interface id registered by CoRegisterPSClsid within the current process.
772  * 
773  * FIXME: We only search the registry, not ids registered with CoRegisterPSClsid.
774  */
775 HRESULT WINAPI CoGetPSClsid(
776           REFIID riid,     /* [in]  Interface whose proxy/stub CLSID is to be returned */
777           CLSID *pclsid )    /* [out] Where to store returned proxy/stub CLSID */
778 {
779     char *buf, buf2[40];
780     DWORD buf2len;
781     HKEY xhkey;
782
783     TRACE("() riid=%s, pclsid=%p\n", debugstr_guid(riid), pclsid);
784
785     /* Get the input iid as a string */
786     WINE_StringFromCLSID(riid, buf2);
787     /* Allocate memory for the registry key we will construct.
788        (length of iid string plus constant length of static text */
789     buf = HeapAlloc(GetProcessHeap(), 0, strlen(buf2)+27);
790     if (buf == NULL)
791     {
792        return (E_OUTOFMEMORY);
793     }
794
795     /* Construct the registry key we want */
796     sprintf(buf,"Interface\\%s\\ProxyStubClsid32", buf2);
797
798     /* Open the key.. */
799     if (RegOpenKeyA(HKEY_CLASSES_ROOT, buf, &xhkey))
800     {
801        HeapFree(GetProcessHeap(),0,buf);
802        return (E_INVALIDARG);
803     }
804     HeapFree(GetProcessHeap(),0,buf);
805
806     /* ... Once we have the key, query the registry to get the
807        value of CLSID as a string, and convert it into a 
808        proper CLSID structure to be passed back to the app */
809     buf2len = sizeof(buf2);
810     if ( (RegQueryValueA(xhkey,NULL,buf2,&buf2len)) )
811     {
812        RegCloseKey(xhkey);
813        return E_INVALIDARG;
814     }
815     RegCloseKey(xhkey);
816
817     /* We have the CLSid we want back from the registry as a string, so
818        lets convert it into a CLSID structure */
819     if ( (CLSIDFromString16(buf2,pclsid)) != NOERROR)
820     {
821        return E_INVALIDARG;
822     }
823
824     TRACE ("() Returning CLSID=%s\n", debugstr_guid(pclsid));
825     return (S_OK);
826 }
827
828
829
830 /***********************************************************************
831  *              WriteClassStm
832  *
833  * This function write a CLSID on stream
834  */
835 HRESULT WINAPI WriteClassStm(IStream *pStm,REFCLSID rclsid)
836 {
837     TRACE("(%p,%p)\n",pStm,rclsid);
838
839     if (rclsid==NULL)
840         return E_INVALIDARG;
841
842     return IStream_Write(pStm,rclsid,sizeof(CLSID),NULL);
843 }
844
845 /***********************************************************************
846  *              ReadClassStm
847  *
848  * This function read a CLSID from a stream
849  */
850 HRESULT WINAPI ReadClassStm(IStream *pStm,REFCLSID rclsid)
851 {
852     ULONG nbByte;
853     HRESULT res;
854     
855     TRACE("(%p,%p)\n",pStm,rclsid);
856
857     if (rclsid==NULL)
858         return E_INVALIDARG;
859     
860     res = IStream_Read(pStm,(void*)rclsid,sizeof(CLSID),&nbByte);
861
862     if (FAILED(res))
863         return res;
864     
865     if (nbByte != sizeof(CLSID))
866         return S_FALSE;
867     else
868         return S_OK;
869 }
870
871 /* FIXME: this function is not declared in the WINELIB headers. But where should it go ? */
872 /***********************************************************************
873  *           LookupETask (COMPOBJ.94)
874  */
875 HRESULT WINAPI LookupETask16(HTASK16 *hTask,LPVOID p) {
876         FIXME("(%p,%p),stub!\n",hTask,p);
877         if ((*hTask = GetCurrentTask()) == hETask) {
878                 memcpy(p, Table_ETask, sizeof(Table_ETask));
879         }
880         return 0;
881 }
882
883 /* FIXME: this function is not declared in the WINELIB headers. But where should it go ? */
884 /***********************************************************************
885  *           SetETask (COMPOBJ.95)
886  */
887 HRESULT WINAPI SetETask16(HTASK16 hTask, LPVOID p) {
888         FIXME("(%04x,%p),stub!\n",hTask,p);
889         hETask = hTask;
890         return 0;
891 }
892
893 /* FIXME: this function is not declared in the WINELIB headers. But where should it go ? */
894 /***********************************************************************
895  *           CallObjectInWOW (COMPOBJ.201)
896  */
897 HRESULT WINAPI CallObjectInWOW(LPVOID p1,LPVOID p2) {
898         FIXME("(%p,%p),stub!\n",p1,p2);
899         return 0;
900 }
901
902 /******************************************************************************
903  *              CoRegisterClassObject16 [COMPOBJ.5]
904  *
905  * Don't know where it registers it ...
906  */
907 HRESULT WINAPI CoRegisterClassObject16(
908         REFCLSID rclsid,
909         LPUNKNOWN pUnk,
910         DWORD dwClsContext, /* [in] CLSCTX flags indicating the context in which to run the executable */
911         DWORD flags,        /* [in] REGCLS flags indicating how connections are made */
912         LPDWORD lpdwRegister
913 ) {
914         char    buf[80];
915
916         WINE_StringFromCLSID(rclsid,buf);
917
918         FIXME("(%s,%p,0x%08lx,0x%08lx,%p),stub\n",
919                 buf,pUnk,dwClsContext,flags,lpdwRegister
920         );
921         return 0;
922 }
923
924
925 /******************************************************************************
926  *      CoRevokeClassObject16 [COMPOBJ.6]
927  *
928  */
929 HRESULT WINAPI CoRevokeClassObject16(DWORD dwRegister /* token on class obj */)
930 {
931     FIXME("(0x%08lx),stub!\n", dwRegister);
932     return 0;
933 }
934
935
936 /***
937  * COM_GetRegisteredClassObject
938  *
939  * This internal method is used to scan the registered class list to 
940  * find a class object.
941  *
942  * Params: 
943  *   rclsid        Class ID of the class to find.
944  *   dwClsContext  Class context to match.
945  *   ppv           [out] returns a pointer to the class object. Complying
946  *                 to normal COM usage, this method will increase the
947  *                 reference count on this object.
948  */
949 static HRESULT COM_GetRegisteredClassObject(
950         REFCLSID    rclsid,
951         DWORD       dwClsContext,
952         LPUNKNOWN*  ppUnk)
953 {
954   RegisteredClass* curClass;
955
956   /*
957    * Sanity check
958    */
959   assert(ppUnk!=0);
960
961   /*
962    * Iterate through the whole list and try to match the class ID.
963    */
964   curClass = firstRegisteredClass;
965
966   while (curClass != 0)
967   {
968     /*
969      * Check if we have a match on the class ID.
970      */
971     if (IsEqualGUID(&(curClass->classIdentifier), rclsid))
972     {
973       /*
974        * Since we don't do out-of process or DCOM just right away, let's ignore the
975        * class context.
976        */
977
978       /*
979        * We have a match, return the pointer to the class object.
980        */
981       *ppUnk = curClass->classObject;
982
983       IUnknown_AddRef(curClass->classObject);
984
985       return S_OK;
986     }
987
988     /*
989      * Step to the next class in the list.
990      */
991     curClass = curClass->nextClass;
992   }
993
994   /*
995    * If we get to here, we haven't found our class.
996    */
997   return S_FALSE;
998 }
999
1000 /******************************************************************************
1001  *              CoRegisterClassObject   [OLE32.36]
1002  *
1003  * This method will register the class object for a given class ID.
1004  *
1005  * See the Windows documentation for more details.
1006  */
1007 HRESULT WINAPI CoRegisterClassObject(
1008         REFCLSID rclsid,
1009         LPUNKNOWN pUnk,
1010         DWORD dwClsContext, /* [in] CLSCTX flags indicating the context in which to run the executable */
1011         DWORD flags,        /* [in] REGCLS flags indicating how connections are made */
1012         LPDWORD lpdwRegister
1013
1014 {
1015   RegisteredClass* newClass;
1016   LPUNKNOWN        foundObject;
1017   HRESULT          hr;
1018     char buf[80];
1019
1020     WINE_StringFromCLSID(rclsid,buf);
1021
1022   TRACE("(%s,%p,0x%08lx,0x%08lx,%p)\n",
1023         buf,pUnk,dwClsContext,flags,lpdwRegister);
1024
1025   /*
1026    * Perform a sanity check on the parameters
1027    */
1028   if ( (lpdwRegister==0) || (pUnk==0) )
1029   {
1030     return E_INVALIDARG;
1031 }
1032
1033   /*
1034    * Initialize the cookie (out parameter)
1035    */
1036   *lpdwRegister = 0;
1037
1038   /*
1039    * First, check if the class is already registered.
1040    * If it is, this should cause an error.
1041    */
1042   hr = COM_GetRegisteredClassObject(rclsid, dwClsContext, &foundObject);
1043
1044   if (hr == S_OK)
1045   {
1046     /*
1047      * The COM_GetRegisteredClassObject increased the reference count on the
1048      * object so it has to be released.
1049      */
1050     IUnknown_Release(foundObject);
1051
1052     return CO_E_OBJISREG;
1053   }
1054     
1055   /*
1056    * If it is not registered, we must create a new entry for this class and
1057    * append it to the registered class list.
1058    * We use the address of the chain node as the cookie since we are sure it's
1059    * unique.
1060    */
1061   newClass = HeapAlloc(GetProcessHeap(), 0, sizeof(RegisteredClass));
1062
1063   /*
1064    * Initialize the node.
1065    */
1066   newClass->classIdentifier = *rclsid;
1067   newClass->runContext      = dwClsContext;
1068   newClass->connectFlags    = flags;
1069   newClass->dwCookie        = (DWORD)newClass;
1070   newClass->nextClass       = firstRegisteredClass;
1071
1072   /*
1073    * Since we're making a copy of the object pointer, we have to increase its
1074    * reference count.
1075    */
1076   newClass->classObject     = pUnk;
1077   IUnknown_AddRef(newClass->classObject);
1078
1079   firstRegisteredClass = newClass;
1080
1081   /*
1082    * Assign the out parameter (cookie)
1083    */
1084   *lpdwRegister = newClass->dwCookie;
1085     
1086   /*
1087    * We're successful Yippee!
1088    */
1089   return S_OK;
1090 }
1091
1092 /***********************************************************************
1093  *           CoRevokeClassObject [OLE32.40]
1094  *
1095  * This method will remove a class object from the class registry
1096  *
1097  * See the Windows documentation for more details.
1098  */
1099 HRESULT WINAPI CoRevokeClassObject(
1100         DWORD dwRegister) 
1101 {
1102   RegisteredClass** prevClassLink;
1103   RegisteredClass*  curClass;
1104
1105   TRACE("(%08lx)\n",dwRegister);
1106
1107   /*
1108    * Iterate through the whole list and try to match the cookie.
1109    */
1110   curClass      = firstRegisteredClass;
1111   prevClassLink = &firstRegisteredClass;
1112
1113   while (curClass != 0)
1114   {
1115     /*
1116      * Check if we have a match on the cookie.
1117      */
1118     if (curClass->dwCookie == dwRegister)
1119     {
1120       /*
1121        * Remove the class from the chain.
1122        */
1123       *prevClassLink = curClass->nextClass;
1124
1125       /*
1126        * Release the reference to the class object.
1127        */
1128       IUnknown_Release(curClass->classObject);
1129
1130       /*
1131        * Free the memory used by the chain node.
1132  */
1133       HeapFree(GetProcessHeap(), 0, curClass);
1134
1135     return S_OK;
1136 }
1137
1138     /*
1139      * Step to the next class in the list.
1140      */
1141     prevClassLink = &(curClass->nextClass);
1142     curClass      = curClass->nextClass;
1143   }
1144
1145   /*
1146    * If we get to here, we haven't found our class.
1147    */
1148   return E_INVALIDARG;
1149 }
1150
1151 /***********************************************************************
1152  *           CoGetClassObject [COMPOBJ.7]
1153  */
1154 HRESULT WINAPI CoGetClassObject(REFCLSID rclsid, DWORD dwClsContext,
1155                         LPVOID pvReserved, REFIID iid, LPVOID *ppv)
1156 {
1157     LPUNKNOWN   regClassObject;
1158     HRESULT     hres = E_UNEXPECTED;
1159     char        xclsid[80];
1160     WCHAR dllName[MAX_PATH+1];
1161     DWORD dllNameLen = sizeof(dllName);
1162     HINSTANCE hLibrary;
1163     typedef HRESULT (CALLBACK *DllGetClassObjectFunc)(REFCLSID clsid, 
1164                              REFIID iid, LPVOID *ppv);
1165     DllGetClassObjectFunc DllGetClassObject;
1166
1167     WINE_StringFromCLSID((LPCLSID)rclsid,xclsid);
1168
1169     TRACE("\n\tCLSID:\t%s,\n\tIID:\t%s\n",
1170         debugstr_guid(rclsid),
1171         debugstr_guid(iid)
1172     );
1173
1174     /*
1175      * First, try and see if we can't match the class ID with one of the 
1176      * registered classes.
1177      */
1178     if (S_OK == COM_GetRegisteredClassObject(rclsid, dwClsContext, &regClassObject))
1179     {
1180       /*
1181        * Get the required interface from the retrieved pointer.
1182        */
1183       hres = IUnknown_QueryInterface(regClassObject, iid, ppv);
1184
1185       /*
1186        * Since QI got another reference on the pointer, we want to release the
1187        * one we already have. If QI was unsuccessful, this will release the object. This
1188        * is good since we are not returning it in the "out" parameter.
1189        */
1190       IUnknown_Release(regClassObject);
1191
1192       return hres;
1193     }
1194
1195     /* out of process and remote servers not supported yet */
1196     if (((CLSCTX_LOCAL_SERVER|CLSCTX_REMOTE_SERVER) & dwClsContext)
1197         && !((CLSCTX_INPROC_SERVER|CLSCTX_INPROC_HANDLER) & dwClsContext)){
1198         FIXME("CLSCTX_LOCAL_SERVER and CLSCTX_REMOTE_SERVER not supported!\n");
1199         return E_ACCESSDENIED;
1200     }
1201
1202     if ((CLSCTX_INPROC_SERVER|CLSCTX_INPROC_HANDLER) & dwClsContext) {
1203         HKEY key;
1204         char buf[200];
1205
1206         sprintf(buf,"CLSID\\%s\\InprocServer32",xclsid);
1207         hres = RegOpenKeyExA(HKEY_CLASSES_ROOT, buf, 0, KEY_READ, &key);
1208
1209         if (hres != ERROR_SUCCESS) {
1210             return REGDB_E_CLASSNOTREG;
1211         }
1212
1213         memset(dllName,0,sizeof(dllName));
1214         hres= RegQueryValueExW(key,NULL,NULL,NULL,(LPBYTE)dllName,&dllNameLen);
1215         if (hres)
1216                 return REGDB_E_CLASSNOTREG; /* FIXME: check retval */
1217         RegCloseKey(key);
1218         TRACE("found InprocServer32 dll %s\n", debugstr_w(dllName));
1219
1220         /* open dll, call DllGetClassObject */
1221         hLibrary = CoLoadLibrary(dllName, TRUE);
1222         if (hLibrary == 0) {
1223             FIXME("couldn't load InprocServer32 dll %s\n", debugstr_w(dllName));
1224             return E_ACCESSDENIED; /* or should this be CO_E_DLLNOTFOUND? */
1225         }
1226         DllGetClassObject = (DllGetClassObjectFunc)GetProcAddress(hLibrary, "DllGetClassObject");
1227         if (!DllGetClassObject) {
1228             /* not sure if this should be called here CoFreeLibrary(hLibrary);*/
1229             FIXME("couldn't find function DllGetClassObject in %s\n", debugstr_w(dllName));
1230             return E_ACCESSDENIED;
1231         }
1232
1233         /*
1234          * Ask the DLL for its class object. (there was a note here about class
1235          * factories but this is good.
1236          */
1237         return DllGetClassObject(rclsid, iid, ppv);
1238     }
1239     return hres;
1240 }
1241
1242 /***********************************************************************
1243  *        CoResumeClassObjects
1244  *
1245  * Resumes classobjects registered with REGCLS suspended
1246  */
1247 HRESULT WINAPI CoResumeClassObjects(void)
1248 {
1249         FIXME("\n");
1250         return S_OK;
1251 }
1252
1253 /***********************************************************************
1254  *        GetClassFile
1255  *
1256  * This function supplies the CLSID associated with the given filename.
1257  */
1258 HRESULT WINAPI GetClassFile(LPOLESTR filePathName,CLSID *pclsid)
1259 {
1260     IStorage *pstg=0;
1261     HRESULT res;
1262     int nbElm=0,length=0,i=0;
1263     LONG sizeProgId=20;
1264     LPOLESTR *pathDec=0,absFile=0,progId=0;
1265     WCHAR extention[100]={0};
1266
1267     TRACE("()\n");
1268
1269     /* if the file contain a storage object the return the CLSID writen by IStorage_SetClass method*/
1270     if((StgIsStorageFile(filePathName))==S_OK){
1271
1272         res=StgOpenStorage(filePathName,NULL,STGM_READ | STGM_SHARE_DENY_WRITE,NULL,0,&pstg);
1273
1274         if (SUCCEEDED(res))
1275             res=ReadClassStg(pstg,pclsid);
1276
1277         IStorage_Release(pstg);
1278
1279         return res;
1280     }
1281     /* if the file is not a storage object then attemps to match various bits in the file against a
1282        pattern in the registry. this case is not frequently used ! so I present only the psodocode for
1283        this case
1284        
1285      for(i=0;i<nFileTypes;i++)
1286
1287         for(i=0;j<nPatternsForType;j++){
1288
1289             PATTERN pat;
1290             HANDLE  hFile;
1291
1292             pat=ReadPatternFromRegistry(i,j);
1293             hFile=CreateFileW(filePathName,,,,,,hFile);
1294             SetFilePosition(hFile,pat.offset);
1295             ReadFile(hFile,buf,pat.size,NULL,NULL);
1296             if (memcmp(buf&pat.mask,pat.pattern.pat.size)==0){
1297
1298                 *pclsid=ReadCLSIDFromRegistry(i);
1299                 return S_OK;
1300             }
1301         }
1302      */
1303
1304     /* if the obove strategies fail then search for the extension key in the registry */
1305
1306     /* get the last element (absolute file) in the path name */
1307     nbElm=FileMonikerImpl_DecomposePath(filePathName,&pathDec);
1308     absFile=pathDec[nbElm-1];
1309
1310     /* failed if the path represente a directory and not an absolute file name*/
1311     if (lstrcmpW(absFile,(LPOLESTR)"\\"))
1312         return MK_E_INVALIDEXTENSION;
1313
1314     /* get the extension of the file */
1315     length=lstrlenW(absFile);
1316     for(i=length-1; ( (i>=0) && (extention[i]=absFile[i]) );i--);
1317         
1318     /* get the progId associated to the extension */
1319     progId=CoTaskMemAlloc(sizeProgId);
1320
1321     res=RegQueryValueW(HKEY_CLASSES_ROOT,extention,progId,&sizeProgId);
1322
1323     if (res==ERROR_MORE_DATA){
1324
1325         progId = CoTaskMemRealloc(progId,sizeProgId);
1326         res=RegQueryValueW(HKEY_CLASSES_ROOT,extention,progId,&sizeProgId);
1327     }
1328     if (res==ERROR_SUCCESS)
1329         /* return the clsid associated to the progId */
1330         res= CLSIDFromProgID(progId,pclsid);
1331
1332     for(i=0; pathDec[i]!=NULL;i++)
1333         CoTaskMemFree(pathDec[i]);
1334     CoTaskMemFree(pathDec);
1335
1336     CoTaskMemFree(progId);
1337
1338     if (res==ERROR_SUCCESS)
1339         return res;
1340
1341     return MK_E_INVALIDEXTENSION;
1342 }
1343 /******************************************************************************
1344  *              CoRegisterMessageFilter16       [COMPOBJ.27]
1345  */
1346 HRESULT WINAPI CoRegisterMessageFilter16(
1347         LPMESSAGEFILTER lpMessageFilter,
1348         LPMESSAGEFILTER *lplpMessageFilter
1349 ) {
1350         FIXME("(%p,%p),stub!\n",lpMessageFilter,lplpMessageFilter);
1351         return 0;
1352 }
1353
1354 /***********************************************************************
1355  *           CoCreateInstance [COMPOBJ.13, OLE32.7]
1356  */
1357 HRESULT WINAPI CoCreateInstance(
1358         REFCLSID rclsid,
1359         LPUNKNOWN pUnkOuter,
1360         DWORD dwClsContext,
1361         REFIID iid,
1362         LPVOID *ppv) 
1363 {
1364         HRESULT hres;
1365         LPCLASSFACTORY lpclf = 0;
1366
1367   /*
1368    * Sanity check
1369    */
1370   if (ppv==0)
1371     return E_POINTER;
1372
1373   /*
1374    * Initialize the "out" parameter
1375    */
1376   *ppv = 0;
1377   
1378   /*
1379    * Get a class factory to construct the object we want.
1380    */
1381   hres = CoGetClassObject(rclsid,
1382                           dwClsContext,
1383                           NULL,
1384                           &IID_IClassFactory,
1385                           (LPVOID)&lpclf);
1386
1387   if (FAILED(hres))
1388     return hres;
1389
1390   /*
1391    * Create the object and don't forget to release the factory
1392    */
1393         hres = IClassFactory_CreateInstance(lpclf, pUnkOuter, iid, ppv);
1394         IClassFactory_Release(lpclf);
1395
1396         return hres;
1397 }
1398
1399 /***********************************************************************
1400  *           CoCreateInstanceEx [OLE32.165]
1401  */
1402 HRESULT WINAPI CoCreateInstanceEx(
1403   REFCLSID      rclsid, 
1404   LPUNKNOWN     pUnkOuter,
1405   DWORD         dwClsContext, 
1406   COSERVERINFO* pServerInfo,
1407   ULONG         cmq,
1408   MULTI_QI*     pResults)
1409 {
1410   IUnknown* pUnk = NULL;
1411   HRESULT   hr;
1412   ULONG     index;
1413   int       successCount = 0;
1414
1415   /*
1416    * Sanity check
1417    */
1418   if ( (cmq==0) || (pResults==NULL))
1419     return E_INVALIDARG;
1420
1421   if (pServerInfo!=NULL)
1422     FIXME("() non-NULL pServerInfo not supported!\n");
1423
1424   /*
1425    * Initialize all the "out" parameters.
1426    */
1427   for (index = 0; index < cmq; index++)
1428   {
1429     pResults[index].pItf = NULL;
1430     pResults[index].hr   = E_NOINTERFACE;
1431   }
1432
1433   /*
1434    * Get the object and get its IUnknown pointer.
1435    */
1436   hr = CoCreateInstance(rclsid, 
1437                         pUnkOuter,
1438                         dwClsContext,
1439                         &IID_IUnknown,
1440                         (VOID**)&pUnk);
1441
1442   if (hr)
1443     return hr;
1444
1445   /*
1446    * Then, query for all the interfaces requested.
1447    */
1448   for (index = 0; index < cmq; index++)
1449   {
1450     pResults[index].hr = IUnknown_QueryInterface(pUnk,
1451                                                  pResults[index].pIID,
1452                                                  (VOID**)&(pResults[index].pItf));
1453
1454     if (pResults[index].hr == S_OK)
1455       successCount++;
1456   }
1457
1458   /*
1459    * Release our temporary unknown pointer.
1460    */
1461   IUnknown_Release(pUnk);
1462
1463   if (successCount == 0)
1464     return E_NOINTERFACE;
1465
1466   if (successCount!=cmq)
1467     return CO_S_NOTALLINTERFACES;
1468
1469   return S_OK;
1470 }
1471
1472 /***********************************************************************
1473  *           CoFreeLibrary [COMPOBJ.13]
1474  */
1475 void WINAPI CoFreeLibrary(HINSTANCE hLibrary)
1476 {
1477     OpenDll *ptr, *prev;
1478     OpenDll *tmp;
1479
1480     /* lookup library in linked list */
1481     prev = NULL;
1482     for (ptr = openDllList; ptr != NULL; ptr=ptr->next) {
1483         if (ptr->hLibrary == hLibrary) {
1484             break;
1485         }
1486         prev = ptr;
1487     }
1488
1489     if (ptr == NULL) {
1490         /* shouldn't happen if user passed in a valid hLibrary */
1491         return;
1492     }
1493     /* assert: ptr points to the library entry to free */
1494
1495     /* free library and remove node from list */
1496     FreeLibrary(hLibrary);
1497     if (ptr == openDllList) {
1498         tmp = openDllList->next;
1499         HeapFree(GetProcessHeap(), 0, openDllList);
1500         openDllList = tmp;
1501     } else {
1502         tmp = ptr->next;
1503         HeapFree(GetProcessHeap(), 0, ptr);
1504         prev->next = tmp;
1505     }
1506
1507 }
1508
1509
1510 /***********************************************************************
1511  *           CoFreeAllLibraries [COMPOBJ.12]
1512  */
1513 void WINAPI CoFreeAllLibraries(void)
1514 {
1515     OpenDll *ptr, *tmp;
1516
1517     for (ptr = openDllList; ptr != NULL; ) {
1518         tmp=ptr->next;
1519         CoFreeLibrary(ptr->hLibrary);
1520         ptr = tmp;
1521     }
1522 }
1523
1524
1525
1526 /***********************************************************************
1527  *           CoFreeUnusedLibraries [COMPOBJ.17]
1528  */
1529 void WINAPI CoFreeUnusedLibraries(void)
1530 {
1531     OpenDll *ptr, *tmp;
1532     typedef HRESULT(*DllCanUnloadNowFunc)(void);
1533     DllCanUnloadNowFunc DllCanUnloadNow;
1534
1535     for (ptr = openDllList; ptr != NULL; ) {
1536         DllCanUnloadNow = (DllCanUnloadNowFunc)
1537             GetProcAddress(ptr->hLibrary, "DllCanUnloadNow");
1538         
1539         if ( (DllCanUnloadNow != NULL) &&
1540              (DllCanUnloadNow() == S_OK) ) {
1541             tmp=ptr->next;
1542             CoFreeLibrary(ptr->hLibrary);
1543             ptr = tmp;
1544         } else {
1545             ptr=ptr->next;
1546         }
1547     }
1548 }
1549
1550 /***********************************************************************
1551  *           CoFileTimeNow [COMPOBJ.82, OLE32.10]
1552  * RETURNS
1553  *      the current system time in lpFileTime
1554  */
1555 HRESULT WINAPI CoFileTimeNow( FILETIME *lpFileTime ) /* [out] the current time */
1556 {
1557     GetSystemTimeAsFileTime( lpFileTime );
1558     return S_OK;
1559 }
1560
1561 /***********************************************************************
1562  *           CoTaskMemAlloc (OLE32.43)
1563  * RETURNS
1564  *      pointer to newly allocated block
1565  */
1566 LPVOID WINAPI CoTaskMemAlloc(
1567         ULONG size      /* [in] size of memoryblock to be allocated */
1568 ) {
1569     LPMALLOC    lpmalloc;
1570     HRESULT     ret = CoGetMalloc(0,&lpmalloc);
1571
1572     if (FAILED(ret)) 
1573         return NULL;
1574
1575     return IMalloc_Alloc(lpmalloc,size);
1576 }
1577 /***********************************************************************
1578  *           CoTaskMemFree (OLE32.44)
1579  */
1580 VOID WINAPI CoTaskMemFree(
1581         LPVOID ptr      /* [in] pointer to be freed */
1582 ) {
1583     LPMALLOC    lpmalloc;
1584     HRESULT     ret = CoGetMalloc(0,&lpmalloc);
1585
1586     if (FAILED(ret)) 
1587       return;
1588
1589     IMalloc_Free(lpmalloc, ptr);
1590 }
1591
1592 /***********************************************************************
1593  *           CoTaskMemRealloc (OLE32.45)
1594  * RETURNS
1595  *      pointer to newly allocated block
1596  */
1597 LPVOID WINAPI CoTaskMemRealloc(
1598   LPVOID pvOld,
1599   ULONG  size)  /* [in] size of memoryblock to be allocated */
1600 {
1601   LPMALLOC lpmalloc;
1602   HRESULT  ret = CoGetMalloc(0,&lpmalloc);
1603   
1604   if (FAILED(ret)) 
1605     return NULL;
1606
1607   return IMalloc_Realloc(lpmalloc, pvOld, size);
1608 }
1609
1610 /***********************************************************************
1611  *           CoLoadLibrary (OLE32.30)
1612  */
1613 HINSTANCE WINAPI CoLoadLibrary(LPOLESTR lpszLibName, BOOL bAutoFree)
1614 {
1615     HINSTANCE hLibrary;
1616     OpenDll *ptr;
1617     OpenDll *tmp;
1618   
1619     TRACE("(%s, %d)\n", debugstr_w(lpszLibName), bAutoFree);
1620
1621     hLibrary = LoadLibraryExW(lpszLibName, 0, LOAD_WITH_ALTERED_SEARCH_PATH);
1622
1623     if (!bAutoFree)
1624         return hLibrary;
1625
1626     if (openDllList == NULL) {
1627         /* empty list -- add first node */
1628         openDllList = (OpenDll*)HeapAlloc(GetProcessHeap(),0, sizeof(OpenDll));
1629         openDllList->hLibrary=hLibrary;
1630         openDllList->next = NULL;
1631     } else {
1632         /* search for this dll */
1633         int found = FALSE;
1634         for (ptr = openDllList; ptr->next != NULL; ptr=ptr->next) {
1635             if (ptr->hLibrary == hLibrary) {
1636                 found = TRUE;
1637                 break;
1638             }
1639         }
1640         if (!found) {
1641             /* dll not found, add it */
1642             tmp = openDllList;
1643             openDllList = (OpenDll*)HeapAlloc(GetProcessHeap(),0, sizeof(OpenDll));
1644             openDllList->hLibrary = hLibrary;
1645             openDllList->next = tmp;
1646         }
1647     }
1648      
1649     return hLibrary;
1650 }
1651
1652 /***********************************************************************
1653  *           CoInitializeWOW (OLE32.27)
1654  */
1655 HRESULT WINAPI CoInitializeWOW(DWORD x,DWORD y) {
1656     FIXME("(0x%08lx,0x%08lx),stub!\n",x,y);
1657     return 0;
1658 }
1659
1660 /******************************************************************************
1661  *              CoLockObjectExternal16  [COMPOBJ.63]
1662  */
1663 HRESULT WINAPI CoLockObjectExternal16(
1664     LPUNKNOWN pUnk,             /* [in] object to be locked */
1665     BOOL16 fLock,               /* [in] do lock */
1666     BOOL16 fLastUnlockReleases  /* [in] ? */
1667 ) {
1668     FIXME("(%p,%d,%d),stub!\n",pUnk,fLock,fLastUnlockReleases);
1669     return S_OK;
1670 }
1671
1672 /******************************************************************************
1673  *              CoLockObjectExternal    [OLE32.31]
1674  */
1675 HRESULT WINAPI CoLockObjectExternal(
1676     LPUNKNOWN pUnk,             /* [in] object to be locked */
1677     BOOL fLock,         /* [in] do lock */
1678     BOOL fLastUnlockReleases) /* [in] unlock all */
1679 {
1680
1681   if (fLock) 
1682   {
1683     /* 
1684      * Increment the external lock coutner, COM_ExternalLockAddRef also
1685      * increment the object's internal lock counter.
1686      */
1687     COM_ExternalLockAddRef( pUnk); 
1688   }
1689   else
1690   {
1691     /* 
1692      * Decrement the external lock coutner, COM_ExternalLockRelease also
1693      * decrement the object's internal lock counter.
1694      */
1695     COM_ExternalLockRelease( pUnk, fLastUnlockReleases);
1696   }
1697
1698     return S_OK;
1699 }
1700
1701 /***********************************************************************
1702  *           CoGetState16 [COMPOBJ.115]
1703  */
1704 HRESULT WINAPI CoGetState16(LPDWORD state)
1705 {
1706     FIXME("(%p),stub!\n", state);
1707     *state = 0;
1708     return S_OK;
1709 }
1710 /***********************************************************************
1711  *           CoSetState [COM32.42]
1712  */
1713 HRESULT WINAPI CoSetState(LPDWORD state)
1714 {
1715     FIXME("(%p),stub!\n", state);
1716     if (state) *state = 0;
1717     return S_OK;
1718 }
1719 /***********************************************************************
1720  *          CoCreateFreeThreadedMarshaler [OLE32.5]
1721  */
1722 HRESULT WINAPI CoCreateFreeThreadedMarshaler (LPUNKNOWN punkOuter, LPUNKNOWN* ppunkMarshal)
1723 {
1724    FIXME ("(%p %p): stub\n", punkOuter, ppunkMarshal);
1725     
1726    return S_OK;
1727 }
1728
1729
1730 /***********************************************************************
1731  *           DllGetClassObject [OLE32.63]
1732  */
1733 HRESULT WINAPI OLE32_DllGetClassObject(REFCLSID rclsid, REFIID iid,LPVOID *ppv)
1734 {       
1735         FIXME("\n\tCLSID:\t%s,\n\tIID:\t%s\n",debugstr_guid(rclsid),debugstr_guid(iid));
1736         *ppv = NULL;
1737         return CLASS_E_CLASSNOTAVAILABLE;
1738 }
1739
1740
1741 /***
1742  * COM_RevokeAllClasses
1743  *
1744  * This method is called when the COM libraries are uninitialized to 
1745  * release all the references to the class objects registered with
1746  * the library
1747  */
1748 static void COM_RevokeAllClasses()
1749 {
1750   while (firstRegisteredClass!=0)
1751   {
1752     CoRevokeClassObject(firstRegisteredClass->dwCookie);
1753   }
1754 }
1755
1756 /****************************************************************************
1757  *  COM External Lock methods implementation
1758  */
1759
1760 /****************************************************************************
1761  * Public - Method that increments the count for a IUnknown* in the linked 
1762  * list.  The item is inserted if not already in the list.
1763  */
1764 static void COM_ExternalLockAddRef(
1765   IUnknown *pUnk)
1766 {
1767   COM_ExternalLock *externalLock = COM_ExternalLockFind(pUnk);
1768
1769   /*
1770    * Add an external lock to the object. If it was already externally
1771    * locked, just increase the reference count. If it was not.
1772    * add the item to the list.
1773    */
1774   if ( externalLock == EL_NOT_FOUND )
1775     COM_ExternalLockInsert(pUnk);
1776   else
1777     externalLock->uRefCount++;
1778
1779   /*
1780    * Add an internal lock to the object
1781    */
1782   IUnknown_AddRef(pUnk); 
1783 }
1784
1785 /****************************************************************************
1786  * Public - Method that decrements the count for a IUnknown* in the linked 
1787  * list.  The item is removed from the list if its count end up at zero or if
1788  * bRelAll is TRUE.
1789  */
1790 static void COM_ExternalLockRelease(
1791   IUnknown *pUnk,
1792   BOOL   bRelAll)
1793 {
1794   COM_ExternalLock *externalLock = COM_ExternalLockFind(pUnk);
1795
1796   if ( externalLock != EL_NOT_FOUND )
1797   {
1798     do
1799     {
1800       externalLock->uRefCount--;  /* release external locks      */
1801       IUnknown_Release(pUnk);     /* release local locks as well */
1802
1803       if ( bRelAll == FALSE ) 
1804         break;  /* perform single release */
1805
1806     } while ( externalLock->uRefCount > 0 );  
1807
1808     if ( externalLock->uRefCount == 0 )  /* get rid of the list entry */
1809       COM_ExternalLockDelete(externalLock);
1810   }
1811 }
1812 /****************************************************************************
1813  * Public - Method that frees the content of the list.
1814  */
1815 static void COM_ExternalLockFreeList()
1816 {
1817   COM_ExternalLock *head;
1818
1819   head = elList.head;                 /* grab it by the head             */
1820   while ( head != EL_END_OF_LIST )
1821   {
1822     COM_ExternalLockDelete(head);     /* get rid of the head stuff       */
1823
1824     head = elList.head;               /* get the new head...             */ 
1825   }
1826 }
1827
1828 /****************************************************************************
1829  * Public - Method that dump the content of the list.
1830  */
1831 void COM_ExternalLockDump()
1832 {
1833   COM_ExternalLock *current = elList.head;
1834
1835   DPRINTF("\nExternal lock list contains:\n");
1836
1837   while ( current != EL_END_OF_LIST )
1838   {
1839       DPRINTF( "\t%p with %lu references count.\n", current->pUnk, current->uRefCount);
1840  
1841     /* Skip to the next item */ 
1842     current = current->next;
1843   } 
1844
1845 }
1846
1847 /****************************************************************************
1848  * Internal - Find a IUnknown* in the linked list
1849  */
1850 static COM_ExternalLock* COM_ExternalLockFind(
1851   IUnknown *pUnk)
1852 {
1853   return COM_ExternalLockLocate(elList.head, pUnk);
1854 }
1855
1856 /****************************************************************************
1857  * Internal - Recursivity agent for IUnknownExternalLockList_Find
1858  */
1859 static COM_ExternalLock* COM_ExternalLockLocate(
1860   COM_ExternalLock *element,
1861   IUnknown         *pUnk)
1862 {
1863   if ( element == EL_END_OF_LIST )  
1864     return EL_NOT_FOUND;
1865
1866   else if ( element->pUnk == pUnk )    /* We found it */
1867     return element;
1868
1869   else                                 /* Not the right guy, keep on looking */ 
1870     return COM_ExternalLockLocate( element->next, pUnk);
1871 }
1872
1873 /****************************************************************************
1874  * Internal - Insert a new IUnknown* to the linked list
1875  */
1876 static BOOL COM_ExternalLockInsert(
1877   IUnknown *pUnk)
1878 {
1879   COM_ExternalLock *newLock      = NULL;
1880   COM_ExternalLock *previousHead = NULL;
1881
1882   /*
1883    * Allocate space for the new storage object
1884    */
1885   newLock = HeapAlloc(GetProcessHeap(), 0, sizeof(COM_ExternalLock));
1886
1887   if (newLock!=NULL)
1888   {
1889     if ( elList.head == EL_END_OF_LIST ) 
1890     {
1891       elList.head = newLock;    /* The list is empty */
1892     }
1893     else 
1894     {
1895       /* 
1896        * insert does it at the head
1897        */
1898       previousHead  = elList.head;
1899       elList.head = newLock;
1900     }
1901
1902     /*
1903      * Set new list item data member 
1904      */
1905     newLock->pUnk      = pUnk;
1906     newLock->uRefCount = 1;
1907     newLock->next      = previousHead;
1908     
1909     return TRUE;
1910   }
1911   else
1912     return FALSE;
1913 }
1914
1915 /****************************************************************************
1916  * Internal - Method that removes an item from the linked list.
1917  */
1918 static void COM_ExternalLockDelete(
1919   COM_ExternalLock *itemList)
1920 {
1921   COM_ExternalLock *current = elList.head;
1922
1923   if ( current == itemList )
1924   {
1925     /* 
1926      * this section handles the deletion of the first node 
1927      */
1928     elList.head = itemList->next;
1929     HeapFree( GetProcessHeap(), 0, itemList);  
1930   }
1931   else
1932   {
1933     do 
1934     {
1935       if ( current->next == itemList )   /* We found the item to free  */
1936       {
1937         current->next = itemList->next;  /* readjust the list pointers */
1938   
1939         HeapFree( GetProcessHeap(), 0, itemList);  
1940         break; 
1941       }
1942  
1943       /* Skip to the next item */ 
1944       current = current->next;
1945   
1946     } while ( current != EL_END_OF_LIST );
1947   }
1948 }
1949
1950 /***********************************************************************
1951  *      COMPOBJ_DllEntryPoint                   [COMPOBJ.entry]
1952  *
1953  *    Initialization code for the COMPOBJ DLL
1954  *
1955  * RETURNS:
1956  */
1957 BOOL WINAPI COMPOBJ_DllEntryPoint(DWORD Reason, HINSTANCE16 hInst, WORD ds, WORD HeapSize, DWORD res1, WORD res2)
1958 {
1959         TRACE("(%08lx, %04x, %04x, %04x, %08lx, %04x)\n", Reason, hInst, ds, HeapSize,
1960  res1, res2);
1961         switch(Reason)
1962         {
1963         case DLL_PROCESS_ATTACH:
1964                 COMPOBJ_Attach++;
1965                 if(COMPOBJ_hInstance)
1966                 {
1967                         ERR("compobj.dll instantiated twice!\n");
1968                         /*
1969                          * We should return FALSE here, but that will break
1970                          * most apps that use CreateProcess because we do
1971                          * not yet support seperate address-spaces.
1972                          */
1973                         return TRUE;
1974                 }
1975
1976                 COMPOBJ_hInstance = hInst;
1977                 break;
1978
1979         case DLL_PROCESS_DETACH:
1980                 if(!--COMPOBJ_Attach)
1981                         COMPOBJ_hInstance = 0;
1982                 break;
1983         }
1984         return TRUE;
1985 }
1986
1987 /******************************************************************************
1988  *              OleGetAutoConvert        [OLE32.104]
1989  */
1990 HRESULT WINAPI OleGetAutoConvert(REFCLSID clsidOld, LPCLSID pClsidNew)
1991 {
1992   HKEY  hkey;
1993   char  buf[200];
1994   WCHAR wbuf[200];
1995   DWORD len;
1996
1997   sprintf(buf,"CLSID\\");WINE_StringFromCLSID(clsidOld,&buf[6]);
1998   if (RegOpenKeyA(HKEY_CLASSES_ROOT,buf,&hkey))
1999       return REGDB_E_CLASSNOTREG;
2000   len = 200;
2001   if (RegQueryValueA(hkey,"AutoConvertTo",buf,&len))
2002       return REGDB_E_KEYMISSING;
2003   RegCloseKey(hkey);
2004   lstrcpyAtoW(wbuf,buf);
2005   CLSIDFromString(wbuf,pClsidNew);
2006   return S_OK;
2007 }
2008
2009 /***********************************************************************
2010  *           IsEqualGUID [OLE32.76]
2011  *
2012  * Compares two Unique Identifiers.
2013  *
2014  * RETURNS
2015  *      TRUE if equal
2016  */
2017 #undef IsEqualGUID
2018 BOOL WINAPI IsEqualGUID(
2019      REFGUID rguid1, /* [in] unique id 1 */
2020      REFGUID rguid2  /* [in] unique id 2 */
2021      )
2022 {
2023     return !memcmp(rguid1,rguid2,sizeof(GUID));
2024 }