Fix StringFromGUI2 return value as per documentation.
[wine.git] / dlls / ole32 / compobj.c
blob33673ff1de979ad83689976d207d3ccf8f4a7c9d
1 /*
2 * COMPOBJ library
4 * Copyright 1995 Martin von Loewis
5 * Copyright 1998 Justin Bradford
6 * Copyright 1999 Francis Beaudet
7 * Copyright 1999 Sylvain St-Germain
8 */
10 #include "config.h"
12 #include <unistd.h>
13 #include <fcntl.h>
14 #include <sys/types.h>
15 #include <sys/time.h>
16 #include <sys/stat.h>
17 #ifdef HAVE_SYS_FILE_H
18 # include <sys/file.h>
19 #endif
20 #include <sys/ioctl.h>
21 #ifdef HAVE_SYS_SOCKET_H
22 # include <sys/socket.h>
23 #endif
24 #ifdef HAVE_SYS_SOCKIO_H
25 # include <sys/sockio.h>
26 #endif
27 #ifdef HAVE_NET_IF_H
28 # include <net/if.h>
29 #endif
30 #ifdef HAVE_NETINET_IN_H
31 # include <netinet/in.h>
32 #endif
33 #include <stdlib.h>
34 #include <stdio.h>
35 #include <string.h>
36 #include <time.h>
37 #include <assert.h>
38 #include "windef.h"
39 #include "wtypes.h"
40 #include "wingdi.h"
41 #include "wine/winbase16.h"
42 #include "winerror.h"
43 #include "wownt32.h"
44 #include "ole.h"
45 #include "ole2ver.h"
46 #include "debugtools.h"
47 #include "file.h"
48 #include "heap.h"
49 #include "ldt.h"
50 #include "winreg.h"
52 #include "wine/obj_base.h"
53 #include "wine/obj_misc.h"
54 #include "wine/obj_storage.h"
55 #include "wine/obj_clientserver.h"
57 #include "ifs.h"
58 #include "compobj.h"
60 DEFAULT_DEBUG_CHANNEL(ole);
62 /****************************************************************************
63 * COM External Lock structures and methods declaration
65 * This api provides a linked list to managed external references to
66 * COM objects.
68 * The public interface consists of three calls:
69 * COM_ExternalLockAddRef
70 * COM_ExternalLockRelease
71 * COM_ExternalLockFreeList
74 #define EL_END_OF_LIST 0
75 #define EL_NOT_FOUND 0
78 * Declaration of the static structure that manage the
79 * external lock to COM objects.
81 typedef struct COM_ExternalLock COM_ExternalLock;
82 typedef struct COM_ExternalLockList COM_ExternalLockList;
84 struct COM_ExternalLock
86 IUnknown *pUnk; /* IUnknown referenced */
87 ULONG uRefCount; /* external lock counter to IUnknown object*/
88 COM_ExternalLock *next; /* Pointer to next element in list */
91 struct COM_ExternalLockList
93 COM_ExternalLock *head; /* head of list */
97 * Declaration and initialization of the static structure that manages
98 * the external lock to COM objects.
100 static COM_ExternalLockList elList = { EL_END_OF_LIST };
103 * Public Interface to the external lock list
105 static void COM_ExternalLockFreeList();
106 static void COM_ExternalLockAddRef(IUnknown *pUnk);
107 static void COM_ExternalLockRelease(IUnknown *pUnk, BOOL bRelAll);
108 void COM_ExternalLockDump(); /* testing purposes, not static to avoid warning */
111 * Private methods used to managed the linked list
113 static BOOL COM_ExternalLockInsert(
114 IUnknown *pUnk);
116 static void COM_ExternalLockDelete(
117 COM_ExternalLock *element);
119 static COM_ExternalLock* COM_ExternalLockFind(
120 IUnknown *pUnk);
122 static COM_ExternalLock* COM_ExternalLockLocate(
123 COM_ExternalLock *element,
124 IUnknown *pUnk);
126 /****************************************************************************
127 * This section defines variables internal to the COM module.
129 * TODO: Most of these things will have to be made thread-safe.
131 HINSTANCE16 COMPOBJ_hInstance = 0;
132 HINSTANCE COMPOBJ_hInstance32 = 0;
133 static int COMPOBJ_Attach = 0;
135 LPMALLOC16 currentMalloc16=NULL;
136 LPMALLOC currentMalloc32=NULL;
138 HTASK16 hETask = 0;
139 WORD Table_ETask[62];
142 * This lock count counts the number of times CoInitialize is called. It is
143 * decreased every time CoUninitialize is called. When it hits 0, the COM
144 * libraries are freed
146 static ULONG s_COMLockCount = 0;
149 * This linked list contains the list of registered class objects. These
150 * are mostly used to register the factories for out-of-proc servers of OLE
151 * objects.
153 * TODO: Make this data structure aware of inter-process communication. This
154 * means that parts of this will be exported to the Wine Server.
156 typedef struct tagRegisteredClass
158 CLSID classIdentifier;
159 LPUNKNOWN classObject;
160 DWORD runContext;
161 DWORD connectFlags;
162 DWORD dwCookie;
163 struct tagRegisteredClass* nextClass;
164 } RegisteredClass;
166 static RegisteredClass* firstRegisteredClass = NULL;
168 /* this open DLL table belongs in a per process table, but my guess is that
169 * it shouldn't live in the kernel, so I'll put them out here in DLL
170 * space assuming that there is one OLE32 per process.
172 typedef struct tagOpenDll {
173 HINSTANCE hLibrary;
174 struct tagOpenDll *next;
175 } OpenDll;
177 static OpenDll *openDllList = NULL; /* linked list of open dlls */
179 /*****************************************************************************
180 * This section contains prototypes to internal methods for this
181 * module
183 static HRESULT COM_GetRegisteredClassObject(REFCLSID rclsid,
184 DWORD dwClsContext,
185 LPUNKNOWN* ppUnk);
187 static void COM_RevokeAllClasses();
190 /******************************************************************************
191 * CoBuildVersion [COMPOBJ.1]
193 * RETURNS
194 * Current build version, hiword is majornumber, loword is minornumber
196 DWORD WINAPI CoBuildVersion(void)
198 TRACE("Returning version %d, build %d.\n", rmm, rup);
199 return (rmm<<16)+rup;
202 /******************************************************************************
203 * CoInitialize16 [COMPOBJ.2]
204 * Set the win16 IMalloc used for memory management
206 HRESULT WINAPI CoInitialize16(
207 LPVOID lpReserved /* [in] pointer to win16 malloc interface */
209 currentMalloc16 = (LPMALLOC16)lpReserved;
210 return S_OK;
213 /******************************************************************************
214 * CoInitialize [OLE32.26]
216 * Initializes the COM libraries.
218 * See CoInitializeEx
220 HRESULT WINAPI CoInitialize(
221 LPVOID lpReserved /* [in] pointer to win32 malloc interface
222 (obsolete, should be NULL) */
226 * Just delegate to the newer method.
228 return CoInitializeEx(lpReserved, COINIT_APARTMENTTHREADED);
231 /******************************************************************************
232 * CoInitializeEx [OLE32.163]
234 * Initializes the COM libraries. The behavior used to set the win32 IMalloc
235 * used for memory management is obsolete.
237 * RETURNS
238 * S_OK if successful,
239 * S_FALSE if this function was called already.
240 * RPC_E_CHANGED_MODE if a previous call to CoInitialize specified another
241 * threading model.
243 * BUGS
244 * Only the single threaded model is supported. As a result RPC_E_CHANGED_MODE
245 * is never returned.
247 * See the windows documentation for more details.
249 HRESULT WINAPI CoInitializeEx(
250 LPVOID lpReserved, /* [in] pointer to win32 malloc interface
251 (obsolete, should be NULL) */
252 DWORD dwCoInit /* [in] A value from COINIT specifies the threading model */
255 HRESULT hr;
257 TRACE("(%p, %x)\n", lpReserved, (int)dwCoInit);
259 if (lpReserved!=NULL)
261 ERR("(%p, %x) - Bad parameter passed-in %p, must be an old Windows Application\n", lpReserved, (int)dwCoInit, lpReserved);
265 * Check for unsupported features.
267 if (dwCoInit!=COINIT_APARTMENTTHREADED)
269 FIXME(":(%p,%x): unsupported flag %x\n", lpReserved, (int)dwCoInit, (int)dwCoInit);
270 /* Hope for the best and continue anyway */
274 * Check the lock count. If this is the first time going through the initialize
275 * process, we have to initialize the libraries.
277 if (s_COMLockCount==0)
280 * Initialize the various COM libraries and data structures.
282 TRACE("() - Initializing the COM libraries\n");
284 RunningObjectTableImpl_Initialize();
286 hr = S_OK;
288 else
289 hr = S_FALSE;
292 * Crank-up that lock count.
294 s_COMLockCount++;
296 return hr;
299 /***********************************************************************
300 * CoUninitialize16 [COMPOBJ.3]
301 * Don't know what it does.
302 * 3-Nov-98 -- this was originally misspelled, I changed it to what I
303 * believe is the correct spelling
305 void WINAPI CoUninitialize16(void)
307 TRACE("()\n");
308 CoFreeAllLibraries();
311 /***********************************************************************
312 * CoUninitialize [OLE32.47]
314 * This method will release the COM libraries.
316 * See the windows documentation for more details.
318 void WINAPI CoUninitialize(void)
320 TRACE("()\n");
323 * Decrease the reference count.
325 s_COMLockCount--;
328 * If we are back to 0 locks on the COM library, make sure we free
329 * all the associated data structures.
331 if (s_COMLockCount==0)
334 * Release the various COM libraries and data structures.
336 TRACE("() - Releasing the COM libraries\n");
338 RunningObjectTableImpl_UnInitialize();
340 * Release the references to the registered class objects.
342 COM_RevokeAllClasses();
345 * This will free the loaded COM Dlls.
347 CoFreeAllLibraries();
350 * This will free list of external references to COM objects.
352 COM_ExternalLockFreeList();
356 /***********************************************************************
357 * CoGetMalloc16 [COMPOBJ.4]
358 * RETURNS
359 * The current win16 IMalloc
361 HRESULT WINAPI CoGetMalloc16(
362 DWORD dwMemContext, /* [in] unknown */
363 LPMALLOC16 * lpMalloc /* [out] current win16 malloc interface */
365 if(!currentMalloc16)
366 currentMalloc16 = IMalloc16_Constructor();
367 *lpMalloc = currentMalloc16;
368 return S_OK;
371 /******************************************************************************
372 * CoGetMalloc [OLE32.20]
374 * RETURNS
375 * The current win32 IMalloc
377 HRESULT WINAPI CoGetMalloc(
378 DWORD dwMemContext, /* [in] unknown */
379 LPMALLOC *lpMalloc /* [out] current win32 malloc interface */
381 if(!currentMalloc32)
382 currentMalloc32 = IMalloc_Constructor();
383 *lpMalloc = currentMalloc32;
384 return S_OK;
387 /***********************************************************************
388 * CoCreateStandardMalloc16 [COMPOBJ.71]
390 HRESULT WINAPI CoCreateStandardMalloc16(DWORD dwMemContext,
391 LPMALLOC16 *lpMalloc)
393 /* FIXME: docu says we shouldn't return the same allocator as in
394 * CoGetMalloc16 */
395 *lpMalloc = IMalloc16_Constructor();
396 return S_OK;
399 /******************************************************************************
400 * CoDisconnectObject [COMPOBJ.15]
402 HRESULT WINAPI CoDisconnectObject( LPUNKNOWN lpUnk, DWORD reserved )
404 TRACE("%p %lx\n",lpUnk,reserved);
405 return S_OK;
408 /***********************************************************************
409 * IsEqualGUID16 [COMPOBJ.18]
411 * Compares two Unique Identifiers.
413 * RETURNS
414 * TRUE if equal
416 BOOL16 WINAPI IsEqualGUID16(
417 GUID* g1, /* [in] unique id 1 */
418 GUID* g2 /* [in] unique id 2 */
420 return !memcmp( g1, g2, sizeof(GUID) );
423 /***********************************************************************
424 * IsEqualGUID32 [OLE32.76]
426 * Compares two Unique Identifiers.
428 * RETURNS
429 * TRUE if equal
431 BOOL WINAPI IsEqualGUID32(
432 REFGUID rguid1, /* [in] unique id 1 */
433 REFGUID rguid2 /* [in] unique id 2 */
436 return !memcmp(rguid1,rguid2,sizeof(GUID));
439 /******************************************************************************
440 * CLSIDFromString16 [COMPOBJ.20]
441 * Converts a unique identifier from it's string representation into
442 * the GUID struct.
444 * Class id: DWORD-WORD-WORD-BYTES[2]-BYTES[6]
446 * RETURNS
447 * the converted GUID
449 HRESULT WINAPI CLSIDFromString16(
450 LPCOLESTR16 idstr, /* [in] string representation of guid */
451 CLSID *id /* [out] GUID converted from string */
453 BYTE *s = (BYTE *) idstr;
454 BYTE *p;
455 int i;
456 BYTE table[256];
458 if (!s)
459 s = "{00000000-0000-0000-0000-000000000000}";
461 TRACE("%s -> %p\n", s, id);
463 /* quick lookup table */
464 memset(table, 0, 256);
466 for (i = 0; i < 10; i++) {
467 table['0' + i] = i;
469 for (i = 0; i < 6; i++) {
470 table['A' + i] = i+10;
471 table['a' + i] = i+10;
474 /* in form {XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX} */
476 if (strlen(s) != 38)
477 return OLE_ERROR_OBJECT;
479 p = (BYTE *) id;
481 s++; /* skip leading brace */
482 for (i = 0; i < 4; i++) {
483 p[3 - i] = table[*s]<<4 | table[*(s+1)];
484 s += 2;
486 p += 4;
487 s++; /* skip - */
489 for (i = 0; i < 2; i++) {
490 p[1-i] = table[*s]<<4 | table[*(s+1)];
491 s += 2;
493 p += 2;
494 s++; /* skip - */
496 for (i = 0; i < 2; i++) {
497 p[1-i] = table[*s]<<4 | table[*(s+1)];
498 s += 2;
500 p += 2;
501 s++; /* skip - */
503 /* these are just sequential bytes */
504 for (i = 0; i < 2; i++) {
505 *p++ = table[*s]<<4 | table[*(s+1)];
506 s += 2;
508 s++; /* skip - */
510 for (i = 0; i < 6; i++) {
511 *p++ = table[*s]<<4 | table[*(s+1)];
512 s += 2;
515 return S_OK;
518 /******************************************************************************
519 * CoCreateGuid[OLE32.6]
521 * Creates a 128bit GUID.
522 * Implemented according the DCE specification for UUID generation.
523 * Code is based upon uuid library in e2fsprogs by Theodore Ts'o.
524 * Copyright (C) 1996, 1997 Theodore Ts'o.
526 * RETURNS
528 * S_OK if successful.
530 HRESULT WINAPI CoCreateGuid(
531 GUID *pguid /* [out] points to the GUID to initialize */
533 static char has_init = 0;
534 unsigned char a[6];
535 static int adjustment = 0;
536 static struct timeval last = {0, 0};
537 static UINT16 clock_seq;
538 struct timeval tv;
539 unsigned long long clock_reg;
540 UINT clock_high, clock_low;
541 UINT16 temp_clock_seq, temp_clock_mid, temp_clock_hi_and_version;
542 #ifdef HAVE_NET_IF_H
543 int sd;
544 struct ifreq ifr, *ifrp;
545 struct ifconf ifc;
546 char buf[1024];
547 int n, i;
548 #endif
550 /* Have we already tried to get the MAC address? */
551 if (!has_init) {
552 #ifdef HAVE_NET_IF_H
553 /* BSD 4.4 defines the size of an ifreq to be
554 * max(sizeof(ifreq), sizeof(ifreq.ifr_name)+ifreq.ifr_addr.sa_len
555 * However, under earlier systems, sa_len isn't present, so
556 * the size is just sizeof(struct ifreq)
558 #ifdef HAVE_SA_LEN
559 # ifndef max
560 # define max(a,b) ((a) > (b) ? (a) : (b))
561 # endif
562 # define ifreq_size(i) max(sizeof(struct ifreq),\
563 sizeof((i).ifr_name)+(i).ifr_addr.sa_len)
564 # else
565 # define ifreq_size(i) sizeof(struct ifreq)
566 # endif /* HAVE_SA_LEN */
568 sd = socket(AF_INET, SOCK_DGRAM, IPPROTO_IP);
569 if (sd < 0) {
570 /* if we can't open a socket, just use random numbers */
571 /* set the multicast bit to prevent conflicts with real cards */
572 a[0] = (rand() & 0xff) | 0x80;
573 a[1] = rand() & 0xff;
574 a[2] = rand() & 0xff;
575 a[3] = rand() & 0xff;
576 a[4] = rand() & 0xff;
577 a[5] = rand() & 0xff;
578 } else {
579 memset(buf, 0, sizeof(buf));
580 ifc.ifc_len = sizeof(buf);
581 ifc.ifc_buf = buf;
582 /* get the ifconf interface */
583 if (ioctl (sd, SIOCGIFCONF, (char *)&ifc) < 0) {
584 close(sd);
585 /* no ifconf, so just use random numbers */
586 /* set the multicast bit to prevent conflicts with real cards */
587 a[0] = (rand() & 0xff) | 0x80;
588 a[1] = rand() & 0xff;
589 a[2] = rand() & 0xff;
590 a[3] = rand() & 0xff;
591 a[4] = rand() & 0xff;
592 a[5] = rand() & 0xff;
593 } else {
594 /* loop through the interfaces, looking for a valid one */
595 n = ifc.ifc_len;
596 for (i = 0; i < n; i+= ifreq_size(*ifr) ) {
597 ifrp = (struct ifreq *)((char *) ifc.ifc_buf+i);
598 strncpy(ifr.ifr_name, ifrp->ifr_name, IFNAMSIZ);
599 /* try to get the address for this interface */
600 # ifdef SIOCGIFHWADDR
601 if (ioctl(sd, SIOCGIFHWADDR, &ifr) < 0)
602 continue;
603 memcpy(a, (unsigned char *)&ifr.ifr_hwaddr.sa_data, 6);
604 # else
605 # ifdef SIOCGENADDR
606 if (ioctl(sd, SIOCGENADDR, &ifr) < 0)
607 continue;
608 memcpy(a, (unsigned char *) ifr.ifr_enaddr, 6);
609 # else
610 /* XXX we don't have a way of getting the hardware address */
611 close(sd);
612 a[0] = 0;
613 break;
614 # endif /* SIOCGENADDR */
615 # endif /* SIOCGIFHWADDR */
616 /* make sure it's not blank */
617 if (!a[0] && !a[1] && !a[2] && !a[3] && !a[4] && !a[5])
618 continue;
620 goto valid_address;
622 /* if we didn't find a valid address, make a random one */
623 /* once again, set multicast bit to avoid conflicts */
624 a[0] = (rand() & 0xff) | 0x80;
625 a[1] = rand() & 0xff;
626 a[2] = rand() & 0xff;
627 a[3] = rand() & 0xff;
628 a[4] = rand() & 0xff;
629 a[5] = rand() & 0xff;
631 valid_address:
632 close(sd);
635 #else
636 /* no networking info, so generate a random address */
637 a[0] = (rand() & 0xff) | 0x80;
638 a[1] = rand() & 0xff;
639 a[2] = rand() & 0xff;
640 a[3] = rand() & 0xff;
641 a[4] = rand() & 0xff;
642 a[5] = rand() & 0xff;
643 #endif /* HAVE_NET_IF_H */
644 has_init = 1;
647 /* generate time element of GUID */
649 /* Assume that the gettimeofday() has microsecond granularity */
650 #define MAX_ADJUSTMENT 10
652 try_again:
653 gettimeofday(&tv, 0);
654 if ((last.tv_sec == 0) && (last.tv_usec == 0)) {
655 clock_seq = ((rand() & 0xff) << 8) + (rand() & 0xff);
656 clock_seq &= 0x1FFF;
657 last = tv;
658 last.tv_sec--;
660 if ((tv.tv_sec < last.tv_sec) ||
661 ((tv.tv_sec == last.tv_sec) &&
662 (tv.tv_usec < last.tv_usec))) {
663 clock_seq = (clock_seq+1) & 0x1FFF;
664 adjustment = 0;
665 } else if ((tv.tv_sec == last.tv_sec) &&
666 (tv.tv_usec == last.tv_usec)) {
667 if (adjustment >= MAX_ADJUSTMENT)
668 goto try_again;
669 adjustment++;
670 } else
671 adjustment = 0;
673 clock_reg = tv.tv_usec*10 + adjustment;
674 clock_reg += ((unsigned long long) tv.tv_sec)*10000000;
675 clock_reg += (((unsigned long long) 0x01B21DD2) << 32) + 0x13814000;
677 clock_high = clock_reg >> 32;
678 clock_low = clock_reg;
679 temp_clock_seq = clock_seq | 0x8000;
680 temp_clock_mid = (UINT16)clock_high;
681 temp_clock_hi_and_version = (clock_high >> 16) | 0x1000;
683 /* pack the information into the GUID structure */
685 ((unsigned char*)&pguid->Data1)[3] = (unsigned char)clock_low;
686 clock_low >>= 8;
687 ((unsigned char*)&pguid->Data1)[2] = (unsigned char)clock_low;
688 clock_low >>= 8;
689 ((unsigned char*)&pguid->Data1)[1] = (unsigned char)clock_low;
690 clock_low >>= 8;
691 ((unsigned char*)&pguid->Data1)[0] = (unsigned char)clock_low;
693 ((unsigned char*)&pguid->Data2)[1] = (unsigned char)temp_clock_mid;
694 temp_clock_mid >>= 8;
695 ((unsigned char*)&pguid->Data2)[0] = (unsigned char)temp_clock_mid;
697 ((unsigned char*)&pguid->Data3)[1] = (unsigned char)temp_clock_hi_and_version;
698 temp_clock_hi_and_version >>= 8;
699 ((unsigned char*)&pguid->Data3)[0] = (unsigned char)temp_clock_hi_and_version;
701 ((unsigned char*)pguid->Data4)[1] = (unsigned char)temp_clock_seq;
702 temp_clock_seq >>= 8;
703 ((unsigned char*)pguid->Data4)[0] = (unsigned char)temp_clock_seq;
705 ((unsigned char*)pguid->Data4)[2] = a[0];
706 ((unsigned char*)pguid->Data4)[3] = a[1];
707 ((unsigned char*)pguid->Data4)[4] = a[2];
708 ((unsigned char*)pguid->Data4)[5] = a[3];
709 ((unsigned char*)pguid->Data4)[6] = a[4];
710 ((unsigned char*)pguid->Data4)[7] = a[5];
712 TRACE("%p", pguid);
714 return S_OK;
717 /******************************************************************************
718 * CLSIDFromString [OLE32.3]
719 * Converts a unique identifier from it's string representation into
720 * the GUID struct.
721 * RETURNS
722 * the converted GUID
724 HRESULT WINAPI CLSIDFromString(
725 LPCOLESTR idstr, /* [in] string representation of GUID */
726 CLSID *id /* [out] GUID represented by above string */
728 LPOLESTR16 xid = HEAP_strdupWtoA(GetProcessHeap(),0,idstr);
729 OLESTATUS ret = CLSIDFromString16(xid,id);
731 HeapFree(GetProcessHeap(),0,xid);
732 return ret;
735 /******************************************************************************
736 * WINE_StringFromCLSID [Internal]
737 * Converts a GUID into the respective string representation.
739 * NOTES
741 * RETURNS
742 * the string representation and OLESTATUS
744 HRESULT WINE_StringFromCLSID(
745 const CLSID *id, /* [in] GUID to be converted */
746 LPSTR idstr /* [out] pointer to buffer to contain converted guid */
748 static const char *hex = "0123456789ABCDEF";
749 char *s;
750 int i;
752 if (!id)
753 { ERR("called with id=Null\n");
754 *idstr = 0x00;
755 return E_FAIL;
758 sprintf(idstr, "{%08lX-%04X-%04X-%02X%02X-",
759 id->Data1, id->Data2, id->Data3,
760 id->Data4[0], id->Data4[1]);
761 s = &idstr[25];
763 /* 6 hex bytes */
764 for (i = 2; i < 8; i++) {
765 *s++ = hex[id->Data4[i]>>4];
766 *s++ = hex[id->Data4[i] & 0xf];
769 *s++ = '}';
770 *s++ = '\0';
772 TRACE("%p->%s\n", id, idstr);
774 return OLE_OK;
777 /******************************************************************************
778 * StringFromCLSID16 [COMPOBJ.19]
779 * Converts a GUID into the respective string representation.
780 * The target string is allocated using the OLE IMalloc.
781 * RETURNS
782 * the string representation and OLESTATUS
784 HRESULT WINAPI StringFromCLSID16(
785 REFCLSID id, /* [in] the GUID to be converted */
786 LPOLESTR16 *idstr /* [out] a pointer to a to-be-allocated segmented pointer pointing to the resulting string */
789 LPMALLOC16 mllc;
790 OLESTATUS ret;
791 DWORD args[2];
793 ret = CoGetMalloc16(0,&mllc);
794 if (ret) return ret;
796 args[0] = (DWORD)mllc;
797 args[1] = 40;
799 /* No need for a Callback entry, we have WOWCallback16Ex which does
800 * everything we need.
802 if (!WOWCallback16Ex(
803 (DWORD)((ICOM_VTABLE(IMalloc16)*)PTR_SEG_TO_LIN(
804 ICOM_VTBL(((LPMALLOC16)PTR_SEG_TO_LIN(mllc))))
805 )->fnAlloc,
806 WCB16_CDECL,
807 2*sizeof(DWORD),
808 (LPVOID)args,
809 (LPDWORD)idstr
810 )) {
811 WARN("CallTo16 IMalloc16 failed\n");
812 return E_FAIL;
814 return WINE_StringFromCLSID(id,PTR_SEG_TO_LIN(*idstr));
817 /******************************************************************************
818 * StringFromCLSID [OLE32.151]
819 * Converts a GUID into the respective string representation.
820 * The target string is allocated using the OLE IMalloc.
821 * RETURNS
822 * the string representation and OLESTATUS
824 HRESULT WINAPI StringFromCLSID(
825 REFCLSID id, /* [in] the GUID to be converted */
826 LPOLESTR *idstr /* [out] a pointer to a to-be-allocated pointer pointing to the resulting string */
828 char buf[80];
829 OLESTATUS ret;
830 LPMALLOC mllc;
832 if ((ret=CoGetMalloc(0,&mllc)))
833 return ret;
835 ret=WINE_StringFromCLSID(id,buf);
836 if (!ret) {
837 *idstr = IMalloc_Alloc(mllc,strlen(buf)*2+2);
838 lstrcpyAtoW(*idstr,buf);
840 return ret;
843 /******************************************************************************
844 * StringFromGUID2 [COMPOBJ.76] [OLE32.152]
846 * Converts a global unique identifier into a string of an API-
847 * specified fixed format. (The usual {.....} stuff.)
849 * RETURNS
850 * The (UNICODE) string representation of the GUID in 'str'
851 * The length of the resulting string, 0 if there was any problem.
853 INT WINAPI
854 StringFromGUID2(REFGUID id, LPOLESTR str, INT cmax)
856 char xguid[80];
858 if (WINE_StringFromCLSID(id,xguid))
859 return 0;
860 if (strlen(xguid)>=cmax)
861 return 0;
862 lstrcpyAtoW(str,xguid);
863 return strlen(xguid) + 1;
866 /******************************************************************************
867 * ProgIDFromCLSID [OLE32.133]
868 * Converts a class id into the respective Program ID. (By using a registry lookup)
869 * RETURNS S_OK on success
870 * riid associated with the progid
873 HRESULT WINAPI ProgIDFromCLSID(
874 REFCLSID clsid, /* [in] class id as found in registry */
875 LPOLESTR *lplpszProgID/* [out] associated Prog ID */
878 char strCLSID[50], *buf, *buf2;
879 DWORD buf2len;
880 HKEY xhkey;
881 LPMALLOC mllc;
882 HRESULT ret = S_OK;
884 WINE_StringFromCLSID(clsid, strCLSID);
886 buf = HeapAlloc(GetProcessHeap(), 0, strlen(strCLSID)+14);
887 sprintf(buf,"CLSID\\%s\\ProgID", strCLSID);
888 if (RegOpenKeyA(HKEY_CLASSES_ROOT, buf, &xhkey))
889 ret = REGDB_E_CLASSNOTREG;
891 HeapFree(GetProcessHeap(), 0, buf);
893 if (ret == S_OK)
895 buf2 = HeapAlloc(GetProcessHeap(), 0, 255);
896 buf2len = 255;
897 if (RegQueryValueA(xhkey, NULL, buf2, &buf2len))
898 ret = REGDB_E_CLASSNOTREG;
900 if (ret == S_OK)
902 if (CoGetMalloc(0,&mllc))
903 ret = E_OUTOFMEMORY;
904 else
906 *lplpszProgID = IMalloc_Alloc(mllc, (buf2len+1)*2);
907 lstrcpyAtoW(*lplpszProgID, buf2);
910 HeapFree(GetProcessHeap(), 0, buf2);
913 RegCloseKey(xhkey);
914 return ret;
917 /******************************************************************************
918 * CLSIDFromProgID16 [COMPOBJ.61]
919 * Converts a program id into the respective GUID. (By using a registry lookup)
920 * RETURNS
921 * riid associated with the progid
923 HRESULT WINAPI CLSIDFromProgID16(
924 LPCOLESTR16 progid, /* [in] program id as found in registry */
925 LPCLSID riid /* [out] associated CLSID */
927 char *buf,buf2[80];
928 DWORD buf2len;
929 HRESULT err;
930 HKEY xhkey;
932 buf = HeapAlloc(GetProcessHeap(),0,strlen(progid)+8);
933 sprintf(buf,"%s\\CLSID",progid);
934 if ((err=RegOpenKeyA(HKEY_CLASSES_ROOT,buf,&xhkey))) {
935 HeapFree(GetProcessHeap(),0,buf);
936 return OLE_ERROR_GENERIC;
938 HeapFree(GetProcessHeap(),0,buf);
939 buf2len = sizeof(buf2);
940 if ((err=RegQueryValueA(xhkey,NULL,buf2,&buf2len))) {
941 RegCloseKey(xhkey);
942 return OLE_ERROR_GENERIC;
944 RegCloseKey(xhkey);
945 return CLSIDFromString16(buf2,riid);
948 /******************************************************************************
949 * CLSIDFromProgID [OLE32.2]
950 * Converts a program id into the respective GUID. (By using a registry lookup)
951 * RETURNS
952 * riid associated with the progid
954 HRESULT WINAPI CLSIDFromProgID(
955 LPCOLESTR progid, /* [in] program id as found in registry */
956 LPCLSID riid /* [out] associated CLSID */
958 LPOLESTR16 pid = HEAP_strdupWtoA(GetProcessHeap(),0,progid);
959 OLESTATUS ret = CLSIDFromProgID16(pid,riid);
961 HeapFree(GetProcessHeap(),0,pid);
962 return ret;
965 /***********************************************************************
966 * WriteClassStm
968 * This function write a CLSID on stream
970 HRESULT WINAPI WriteClassStm(IStream *pStm,REFCLSID rclsid)
972 TRACE("(%p,%p)\n",pStm,rclsid);
974 if (rclsid==NULL)
975 return E_INVALIDARG;
977 return IStream_Write(pStm,rclsid,sizeof(CLSID),NULL);
980 /***********************************************************************
981 * ReadClassStm
983 * This function read a CLSID from a stream
985 HRESULT WINAPI ReadClassStm(IStream *pStm,REFCLSID rclsid)
987 ULONG nbByte;
988 HRESULT res;
990 TRACE("(%p,%p)\n",pStm,rclsid);
992 if (rclsid==NULL)
993 return E_INVALIDARG;
995 res = IStream_Read(pStm,(void*)rclsid,sizeof(CLSID),&nbByte);
997 if (FAILED(res))
998 return res;
1000 if (nbByte != sizeof(CLSID))
1001 return S_FALSE;
1002 else
1003 return S_OK;
1006 /* FIXME: this function is not declared in the WINELIB headers. But where should it go ? */
1007 /***********************************************************************
1008 * LookupETask (COMPOBJ.94)
1010 OLESTATUS WINAPI LookupETask16(HTASK16 *hTask,LPVOID p) {
1011 FIXME("(%p,%p),stub!\n",hTask,p);
1012 if ((*hTask = GetCurrentTask()) == hETask) {
1013 memcpy(p, Table_ETask, sizeof(Table_ETask));
1015 return 0;
1018 /* FIXME: this function is not declared in the WINELIB headers. But where should it go ? */
1019 /***********************************************************************
1020 * SetETask (COMPOBJ.95)
1022 OLESTATUS WINAPI SetETask16(HTASK16 hTask, LPVOID p) {
1023 FIXME("(%04x,%p),stub!\n",hTask,p);
1024 hETask = hTask;
1025 return 0;
1028 /* FIXME: this function is not declared in the WINELIB headers. But where should it go ? */
1029 /***********************************************************************
1030 * CallObjectInWOW (COMPOBJ.201)
1032 OLESTATUS WINAPI CallObjectInWOW(LPVOID p1,LPVOID p2) {
1033 FIXME("(%p,%p),stub!\n",p1,p2);
1034 return 0;
1037 /******************************************************************************
1038 * CoRegisterClassObject16 [COMPOBJ.5]
1040 * Don't know where it registers it ...
1042 HRESULT WINAPI CoRegisterClassObject16(
1043 REFCLSID rclsid,
1044 LPUNKNOWN pUnk,
1045 DWORD dwClsContext, /* [in] CLSCTX flags indicating the context in which to run the executable */
1046 DWORD flags, /* [in] REGCLS flags indicating how connections are made */
1047 LPDWORD lpdwRegister
1049 char buf[80];
1051 WINE_StringFromCLSID(rclsid,buf);
1053 FIXME("(%s,%p,0x%08lx,0x%08lx,%p),stub\n",
1054 buf,pUnk,dwClsContext,flags,lpdwRegister
1056 return 0;
1060 /******************************************************************************
1061 * CoRevokeClassObject16 [COMPOBJ.6]
1064 HRESULT WINAPI CoRevokeClassObject16(DWORD dwRegister /* token on class obj */)
1066 FIXME("(0x%08lx),stub!\n", dwRegister);
1067 return 0;
1071 /***
1072 * COM_GetRegisteredClassObject
1074 * This internal method is used to scan the registered class list to
1075 * find a class object.
1077 * Params:
1078 * rclsid Class ID of the class to find.
1079 * dwClsContext Class context to match.
1080 * ppv [out] returns a pointer to the class object. Complying
1081 * to normal COM usage, this method will increase the
1082 * reference count on this object.
1084 static HRESULT COM_GetRegisteredClassObject(
1085 REFCLSID rclsid,
1086 DWORD dwClsContext,
1087 LPUNKNOWN* ppUnk)
1089 RegisteredClass* curClass;
1092 * Sanity check
1094 assert(ppUnk!=0);
1097 * Iterate through the whole list and try to match the class ID.
1099 curClass = firstRegisteredClass;
1101 while (curClass != 0)
1104 * Check if we have a match on the class ID.
1106 if (IsEqualGUID32(&(curClass->classIdentifier), rclsid))
1109 * Since we don't do out-of process or DCOM just right away, let's ignore the
1110 * class context.
1114 * We have a match, return the pointer to the class object.
1116 *ppUnk = curClass->classObject;
1118 IUnknown_AddRef(curClass->classObject);
1120 return S_OK;
1124 * Step to the next class in the list.
1126 curClass = curClass->nextClass;
1130 * If we get to here, we haven't found our class.
1132 return S_FALSE;
1135 /******************************************************************************
1136 * CoRegisterClassObject [OLE32.36]
1138 * This method will register the class object for a given class ID.
1140 * See the Windows documentation for more details.
1142 HRESULT WINAPI CoRegisterClassObject(
1143 REFCLSID rclsid,
1144 LPUNKNOWN pUnk,
1145 DWORD dwClsContext, /* [in] CLSCTX flags indicating the context in which to run the executable */
1146 DWORD flags, /* [in] REGCLS flags indicating how connections are made */
1147 LPDWORD lpdwRegister
1150 RegisteredClass* newClass;
1151 LPUNKNOWN foundObject;
1152 HRESULT hr;
1153 char buf[80];
1155 WINE_StringFromCLSID(rclsid,buf);
1157 TRACE("(%s,%p,0x%08lx,0x%08lx,%p)\n",
1158 buf,pUnk,dwClsContext,flags,lpdwRegister);
1161 * Perform a sanity check on the parameters
1163 if ( (lpdwRegister==0) || (pUnk==0) )
1165 return E_INVALIDARG;
1169 * Initialize the cookie (out parameter)
1171 *lpdwRegister = 0;
1174 * First, check if the class is already registered.
1175 * If it is, this should cause an error.
1177 hr = COM_GetRegisteredClassObject(rclsid, dwClsContext, &foundObject);
1179 if (hr == S_OK)
1182 * The COM_GetRegisteredClassObject increased the reference count on the
1183 * object so it has to be released.
1185 IUnknown_Release(foundObject);
1187 return CO_E_OBJISREG;
1191 * If it is not registered, we must create a new entry for this class and
1192 * append it to the registered class list.
1193 * We use the address of the chain node as the cookie since we are sure it's
1194 * unique.
1196 newClass = HeapAlloc(GetProcessHeap(), 0, sizeof(RegisteredClass));
1199 * Initialize the node.
1201 newClass->classIdentifier = *rclsid;
1202 newClass->runContext = dwClsContext;
1203 newClass->connectFlags = flags;
1204 newClass->dwCookie = (DWORD)newClass;
1205 newClass->nextClass = firstRegisteredClass;
1208 * Since we're making a copy of the object pointer, we have to increase it's
1209 * reference count.
1211 newClass->classObject = pUnk;
1212 IUnknown_AddRef(newClass->classObject);
1214 firstRegisteredClass = newClass;
1217 * Assign the out parameter (cookie)
1219 *lpdwRegister = newClass->dwCookie;
1222 * We're successful Yippee!
1224 return S_OK;
1227 /***********************************************************************
1228 * CoRevokeClassObject [OLE32.40]
1230 * This method will remove a class object from the class registry
1232 * See the Windows documentation for more details.
1234 HRESULT WINAPI CoRevokeClassObject(
1235 DWORD dwRegister)
1237 RegisteredClass** prevClassLink;
1238 RegisteredClass* curClass;
1240 TRACE("(%08lx)\n",dwRegister);
1243 * Iterate through the whole list and try to match the cookie.
1245 curClass = firstRegisteredClass;
1246 prevClassLink = &firstRegisteredClass;
1248 while (curClass != 0)
1251 * Check if we have a match on the cookie.
1253 if (curClass->dwCookie == dwRegister)
1256 * Remove the class from the chain.
1258 *prevClassLink = curClass->nextClass;
1261 * Release the reference to the class object.
1263 IUnknown_Release(curClass->classObject);
1266 * Free the memory used by the chain node.
1268 HeapFree(GetProcessHeap(), 0, curClass);
1270 return S_OK;
1274 * Step to the next class in the list.
1276 prevClassLink = &(curClass->nextClass);
1277 curClass = curClass->nextClass;
1281 * If we get to here, we haven't found our class.
1283 return E_INVALIDARG;
1286 /***********************************************************************
1287 * CoGetClassObject [COMPOBJ.7]
1289 HRESULT WINAPI CoGetClassObject(REFCLSID rclsid, DWORD dwClsContext,
1290 LPVOID pvReserved, REFIID iid, LPVOID *ppv)
1292 LPUNKNOWN regClassObject;
1293 HRESULT hres = E_UNEXPECTED;
1294 char xclsid[80];
1295 WCHAR dllName[MAX_PATH+1];
1296 DWORD dllNameLen = sizeof(dllName);
1297 HINSTANCE hLibrary;
1298 typedef HRESULT (CALLBACK *DllGetClassObjectFunc)(REFCLSID clsid,
1299 REFIID iid, LPVOID *ppv);
1300 DllGetClassObjectFunc DllGetClassObject;
1302 WINE_StringFromCLSID((LPCLSID)rclsid,xclsid);
1304 TRACE("\n\tCLSID:\t%s,\n\tIID:\t%s\n",
1305 debugstr_guid(rclsid),
1306 debugstr_guid(iid)
1310 * First, try and see if we can't match the class ID with one of the
1311 * registered classes.
1313 if (S_OK == COM_GetRegisteredClassObject(rclsid, dwClsContext, &regClassObject))
1316 * Get the required interface from the retrieved pointer.
1318 hres = IUnknown_QueryInterface(regClassObject, iid, ppv);
1321 * Since QI got another reference on the pointer, we want to release the
1322 * one we already have. If QI was unsuccessful, this will release the object. This
1323 * is good since we are not returning it in the "out" parameter.
1325 IUnknown_Release(regClassObject);
1327 return hres;
1330 /* out of process and remote servers not supported yet */
1331 if (((CLSCTX_LOCAL_SERVER|CLSCTX_REMOTE_SERVER) & dwClsContext)
1332 && !((CLSCTX_INPROC_SERVER|CLSCTX_INPROC_HANDLER) & dwClsContext)){
1333 FIXME("CLSCTX_LOCAL_SERVER and CLSCTX_REMOTE_SERVER not supported!\n");
1334 return E_ACCESSDENIED;
1337 if ((CLSCTX_INPROC_SERVER|CLSCTX_INPROC_HANDLER) & dwClsContext) {
1338 HKEY CLSIDkey,key;
1339 WCHAR valname[]={ 'I','n','p','r','o','c',
1340 'S','e','r','v','e','r','3','2',0};
1342 /* lookup CLSID in registry key HKCR/CLSID */
1343 hres = RegOpenKeyExA(HKEY_CLASSES_ROOT, "CLSID", 0,
1344 KEY_READ, &CLSIDkey);
1346 if (hres != ERROR_SUCCESS)
1347 return REGDB_E_READREGDB;
1348 hres = RegOpenKeyExA(CLSIDkey,xclsid,0,KEY_QUERY_VALUE,&key);
1349 if (hres != ERROR_SUCCESS) {
1350 RegCloseKey(CLSIDkey);
1351 return REGDB_E_CLASSNOTREG;
1353 memset(dllName,0,sizeof(dllName));
1354 hres = RegQueryValueW(key, valname, dllName, &dllNameLen);
1355 if (hres) {
1356 ERR("RegQueryValue of %s failed with hres %lx\n",debugstr_w(dllName),hres);
1357 return REGDB_E_CLASSNOTREG; /* FIXME: check retval */
1359 RegCloseKey(key);
1360 RegCloseKey(CLSIDkey);
1361 if (hres != ERROR_SUCCESS)
1362 return REGDB_E_READREGDB;
1363 TRACE("found InprocServer32 dll %s\n", debugstr_w(dllName));
1365 /* open dll, call DllGetClassFactory */
1366 hLibrary = CoLoadLibrary(dllName, TRUE);
1367 if (hLibrary == 0) {
1368 FIXME("couldn't load InprocServer32 dll %s\n", debugstr_w(dllName));
1369 return E_ACCESSDENIED; /* or should this be CO_E_DLLNOTFOUND? */
1371 DllGetClassObject = (DllGetClassObjectFunc)GetProcAddress(hLibrary, "DllGetClassObject");
1372 if (!DllGetClassObject) {
1373 /* not sure if this should be called here CoFreeLibrary(hLibrary);*/
1374 FIXME("couldn't find function DllGetClassObject in %s\n", debugstr_w(dllName));
1375 return E_ACCESSDENIED;
1379 * Ask the DLL for it's class object. (there was a note here about class
1380 * factories but this is good.
1382 return DllGetClassObject(rclsid, iid, ppv);
1384 return hres;
1387 /***********************************************************************
1388 * CoResumeClassObjects
1390 * Resumes classobjects registered with REGCLS suspended
1392 HRESULT WINAPI CoResumeClassObjects(void)
1394 FIXME("\n");
1395 return S_OK;
1398 /***********************************************************************
1399 * GetClassFile
1401 * This function supplies the CLSID associated with the given filename.
1403 HRESULT WINAPI GetClassFile(LPOLESTR filePathName,CLSID *pclsid)
1405 IStorage *pstg=0;
1406 HRESULT res;
1407 int nbElm=0,length=0,i=0;
1408 LONG sizeProgId=20;
1409 LPOLESTR *pathDec=0,absFile=0,progId=0;
1410 WCHAR extention[100]={0};
1412 TRACE("()\n");
1414 /* if the file contain a storage object the return the CLSID writen by IStorage_SetClass method*/
1415 if((StgIsStorageFile(filePathName))==S_OK){
1417 res=StgOpenStorage(filePathName,NULL,STGM_READ | STGM_SHARE_DENY_WRITE,NULL,0,&pstg);
1419 if (SUCCEEDED(res))
1420 res=ReadClassStg(pstg,pclsid);
1422 IStorage_Release(pstg);
1424 return res;
1426 /* if the file is not a storage object then attemps to match various bits in the file against a
1427 pattern in the registry. this case is not frequently used ! so I present only the psodocode for
1428 this case
1430 for(i=0;i<nFileTypes;i++)
1432 for(i=0;j<nPatternsForType;j++){
1434 PATTERN pat;
1435 HANDLE hFile;
1437 pat=ReadPatternFromRegistry(i,j);
1438 hFile=CreateFileW(filePathName,,,,,,hFile);
1439 SetFilePosition(hFile,pat.offset);
1440 ReadFile(hFile,buf,pat.size,NULL,NULL);
1441 if (memcmp(buf&pat.mask,pat.pattern.pat.size)==0){
1443 *pclsid=ReadCLSIDFromRegistry(i);
1444 return S_OK;
1449 /* if the obove strategies fail then search for the extension key in the registry */
1451 /* get the last element (absolute file) in the path name */
1452 nbElm=FileMonikerImpl_DecomposePath(filePathName,&pathDec);
1453 absFile=pathDec[nbElm-1];
1455 /* failed if the path represente a directory and not an absolute file name*/
1456 if (lstrcmpW(absFile,(LPOLESTR)"\\"))
1457 return MK_E_INVALIDEXTENSION;
1459 /* get the extension of the file */
1460 length=lstrlenW(absFile);
1461 for(i=length-1; ( (i>=0) && (extention[i]=absFile[i]) );i--);
1463 /* get the progId associated to the extension */
1464 progId=CoTaskMemAlloc(sizeProgId);
1466 res=RegQueryValueW(HKEY_CLASSES_ROOT,extention,progId,&sizeProgId);
1468 if (res==ERROR_MORE_DATA){
1470 progId = CoTaskMemRealloc(progId,sizeProgId);
1471 res=RegQueryValueW(HKEY_CLASSES_ROOT,extention,progId,&sizeProgId);
1473 if (res==ERROR_SUCCESS)
1474 /* return the clsid associated to the progId */
1475 res= CLSIDFromProgID(progId,pclsid);
1477 for(i=0; pathDec[i]!=NULL;i++)
1478 CoTaskMemFree(pathDec[i]);
1479 CoTaskMemFree(pathDec);
1481 CoTaskMemFree(progId);
1483 if (res==ERROR_SUCCESS)
1484 return res;
1486 return MK_E_INVALIDEXTENSION;
1488 /******************************************************************************
1489 * CoRegisterMessageFilter16 [COMPOBJ.27]
1491 HRESULT WINAPI CoRegisterMessageFilter16(
1492 LPMESSAGEFILTER lpMessageFilter,
1493 LPMESSAGEFILTER *lplpMessageFilter
1495 FIXME("(%p,%p),stub!\n",lpMessageFilter,lplpMessageFilter);
1496 return 0;
1499 /***********************************************************************
1500 * CoCreateInstance [COMPOBJ.13, OLE32.7]
1502 HRESULT WINAPI CoCreateInstance(
1503 REFCLSID rclsid,
1504 LPUNKNOWN pUnkOuter,
1505 DWORD dwClsContext,
1506 REFIID iid,
1507 LPVOID *ppv)
1509 HRESULT hres;
1510 LPCLASSFACTORY lpclf = 0;
1513 * Sanity check
1515 if (ppv==0)
1516 return E_POINTER;
1519 * Initialize the "out" parameter
1521 *ppv = 0;
1524 * Get a class factory to construct the object we want.
1526 hres = CoGetClassObject(rclsid,
1527 dwClsContext,
1528 NULL,
1529 &IID_IClassFactory,
1530 (LPVOID)&lpclf);
1532 if (FAILED(hres))
1533 return hres;
1536 * Create the object and don't forget to release the factory
1538 hres = IClassFactory_CreateInstance(lpclf, pUnkOuter, iid, ppv);
1539 IClassFactory_Release(lpclf);
1541 return hres;
1544 /***********************************************************************
1545 * CoCreateInstanceEx [OLE32.165]
1547 HRESULT WINAPI CoCreateInstanceEx(
1548 REFCLSID rclsid,
1549 LPUNKNOWN pUnkOuter,
1550 DWORD dwClsContext,
1551 COSERVERINFO* pServerInfo,
1552 ULONG cmq,
1553 MULTI_QI* pResults)
1555 IUnknown* pUnk = NULL;
1556 HRESULT hr;
1557 ULONG index;
1558 int successCount = 0;
1561 * Sanity check
1563 if ( (cmq==0) || (pResults==NULL))
1564 return E_INVALIDARG;
1566 if (pServerInfo!=NULL)
1567 FIXME("() non-NULL pServerInfo not supported!\n");
1570 * Initialize all the "out" parameters.
1572 for (index = 0; index < cmq; index++)
1574 pResults[index].pItf = NULL;
1575 pResults[index].hr = E_NOINTERFACE;
1579 * Get the object and get it's IUnknown pointer.
1581 hr = CoCreateInstance(rclsid,
1582 pUnkOuter,
1583 dwClsContext,
1584 &IID_IUnknown,
1585 (VOID**)&pUnk);
1587 if (hr)
1588 return hr;
1591 * Then, query for all the interfaces requested.
1593 for (index = 0; index < cmq; index++)
1595 pResults[index].hr = IUnknown_QueryInterface(pUnk,
1596 pResults[index].pIID,
1597 (VOID**)&(pResults[index].pItf));
1599 if (pResults[index].hr == S_OK)
1600 successCount++;
1604 * Release our temporary unknown pointer.
1606 IUnknown_Release(pUnk);
1608 if (successCount == 0)
1609 return E_NOINTERFACE;
1611 if (successCount!=cmq)
1612 return CO_S_NOTALLINTERFACES;
1614 return S_OK;
1617 /***********************************************************************
1618 * CoFreeLibrary [COMPOBJ.13]
1620 void WINAPI CoFreeLibrary(HINSTANCE hLibrary)
1622 OpenDll *ptr, *prev;
1623 OpenDll *tmp;
1625 /* lookup library in linked list */
1626 prev = NULL;
1627 for (ptr = openDllList; ptr != NULL; ptr=ptr->next) {
1628 if (ptr->hLibrary == hLibrary) {
1629 break;
1631 prev = ptr;
1634 if (ptr == NULL) {
1635 /* shouldn't happen if user passed in a valid hLibrary */
1636 return;
1638 /* assert: ptr points to the library entry to free */
1640 /* free library and remove node from list */
1641 FreeLibrary(hLibrary);
1642 if (ptr == openDllList) {
1643 tmp = openDllList->next;
1644 HeapFree(GetProcessHeap(), 0, openDllList);
1645 openDllList = tmp;
1646 } else {
1647 tmp = ptr->next;
1648 HeapFree(GetProcessHeap(), 0, ptr);
1649 prev->next = tmp;
1655 /***********************************************************************
1656 * CoFreeAllLibraries [COMPOBJ.12]
1658 void WINAPI CoFreeAllLibraries(void)
1660 OpenDll *ptr, *tmp;
1662 for (ptr = openDllList; ptr != NULL; ) {
1663 tmp=ptr->next;
1664 CoFreeLibrary(ptr->hLibrary);
1665 ptr = tmp;
1671 /***********************************************************************
1672 * CoFreeUnusedLibraries [COMPOBJ.17]
1674 void WINAPI CoFreeUnusedLibraries(void)
1676 OpenDll *ptr, *tmp;
1677 typedef HRESULT(*DllCanUnloadNowFunc)(void);
1678 DllCanUnloadNowFunc DllCanUnloadNow;
1680 for (ptr = openDllList; ptr != NULL; ) {
1681 DllCanUnloadNow = (DllCanUnloadNowFunc)
1682 GetProcAddress(ptr->hLibrary, "DllCanUnloadNow");
1684 if ( (DllCanUnloadNow != NULL) &&
1685 (DllCanUnloadNow() == S_OK) ) {
1686 tmp=ptr->next;
1687 CoFreeLibrary(ptr->hLibrary);
1688 ptr = tmp;
1689 } else {
1690 ptr=ptr->next;
1695 /***********************************************************************
1696 * CoFileTimeNow [COMPOBJ.82, OLE32.10]
1697 * RETURNS
1698 * the current system time in lpFileTime
1700 HRESULT WINAPI CoFileTimeNow(
1701 FILETIME *lpFileTime /* [out] the current time */
1703 DOSFS_UnixTimeToFileTime(time(NULL), lpFileTime, 0);
1704 return S_OK;
1707 /***********************************************************************
1708 * CoTaskMemAlloc (OLE32.43)
1709 * RETURNS
1710 * pointer to newly allocated block
1712 LPVOID WINAPI CoTaskMemAlloc(
1713 ULONG size /* [in] size of memoryblock to be allocated */
1715 LPMALLOC lpmalloc;
1716 HRESULT ret = CoGetMalloc(0,&lpmalloc);
1718 if (FAILED(ret))
1719 return NULL;
1721 return IMalloc_Alloc(lpmalloc,size);
1723 /***********************************************************************
1724 * CoTaskMemFree (OLE32.44)
1726 VOID WINAPI CoTaskMemFree(
1727 LPVOID ptr /* [in] pointer to be freed */
1729 LPMALLOC lpmalloc;
1730 HRESULT ret = CoGetMalloc(0,&lpmalloc);
1732 if (FAILED(ret))
1733 return;
1735 IMalloc_Free(lpmalloc, ptr);
1738 /***********************************************************************
1739 * CoTaskMemRealloc (OLE32.45)
1740 * RETURNS
1741 * pointer to newly allocated block
1743 LPVOID WINAPI CoTaskMemRealloc(
1744 LPVOID pvOld,
1745 ULONG size) /* [in] size of memoryblock to be allocated */
1747 LPMALLOC lpmalloc;
1748 HRESULT ret = CoGetMalloc(0,&lpmalloc);
1750 if (FAILED(ret))
1751 return NULL;
1753 return IMalloc_Realloc(lpmalloc, pvOld, size);
1756 /***********************************************************************
1757 * CoLoadLibrary (OLE32.30)
1759 HINSTANCE WINAPI CoLoadLibrary(LPOLESTR lpszLibName, BOOL bAutoFree)
1761 HINSTANCE hLibrary;
1762 OpenDll *ptr;
1763 OpenDll *tmp;
1765 TRACE("CoLoadLibrary(%p, %d\n", debugstr_w(lpszLibName), bAutoFree);
1767 hLibrary = LoadLibraryExW(lpszLibName, 0, LOAD_WITH_ALTERED_SEARCH_PATH);
1769 if (!bAutoFree)
1770 return hLibrary;
1772 if (openDllList == NULL) {
1773 /* empty list -- add first node */
1774 openDllList = (OpenDll*)HeapAlloc(GetProcessHeap(),0, sizeof(OpenDll));
1775 openDllList->hLibrary=hLibrary;
1776 openDllList->next = NULL;
1777 } else {
1778 /* search for this dll */
1779 int found = FALSE;
1780 for (ptr = openDllList; ptr->next != NULL; ptr=ptr->next) {
1781 if (ptr->hLibrary == hLibrary) {
1782 found = TRUE;
1783 break;
1786 if (!found) {
1787 /* dll not found, add it */
1788 tmp = openDllList;
1789 openDllList = (OpenDll*)HeapAlloc(GetProcessHeap(),0, sizeof(OpenDll));
1790 openDllList->hLibrary = hLibrary;
1791 openDllList->next = tmp;
1795 return hLibrary;
1798 /***********************************************************************
1799 * CoInitializeWOW (OLE32.27)
1801 HRESULT WINAPI CoInitializeWOW(DWORD x,DWORD y) {
1802 FIXME("(0x%08lx,0x%08lx),stub!\n",x,y);
1803 return 0;
1806 /******************************************************************************
1807 * CoLockObjectExternal16 [COMPOBJ.63]
1809 HRESULT WINAPI CoLockObjectExternal16(
1810 LPUNKNOWN pUnk, /* [in] object to be locked */
1811 BOOL16 fLock, /* [in] do lock */
1812 BOOL16 fLastUnlockReleases /* [in] ? */
1814 FIXME("(%p,%d,%d),stub!\n",pUnk,fLock,fLastUnlockReleases);
1815 return S_OK;
1818 /******************************************************************************
1819 * CoLockObjectExternal [OLE32.31]
1821 HRESULT WINAPI CoLockObjectExternal(
1822 LPUNKNOWN pUnk, /* [in] object to be locked */
1823 BOOL fLock, /* [in] do lock */
1824 BOOL fLastUnlockReleases) /* [in] unlock all */
1827 if (fLock)
1830 * Increment the external lock coutner, COM_ExternalLockAddRef also
1831 * increment the object's internal lock counter.
1833 COM_ExternalLockAddRef( pUnk);
1835 else
1838 * Decrement the external lock coutner, COM_ExternalLockRelease also
1839 * decrement the object's internal lock counter.
1841 COM_ExternalLockRelease( pUnk, fLastUnlockReleases);
1844 return S_OK;
1847 /***********************************************************************
1848 * CoGetState16 [COMPOBJ.115]
1850 HRESULT WINAPI CoGetState16(LPDWORD state)
1852 FIXME("(%p),stub!\n", state);
1853 *state = 0;
1854 return S_OK;
1856 /***********************************************************************
1857 * CoSetState [COM32.42]
1859 HRESULT WINAPI CoSetState(LPDWORD state)
1861 FIXME("(%p),stub!\n", state);
1862 if (state) *state = 0;
1863 return S_OK;
1867 /***********************************************************************
1868 * DllGetClassObject [OLE32.63]
1870 HRESULT WINAPI OLE32_DllGetClassObject(REFCLSID rclsid, REFIID iid,LPVOID *ppv)
1872 FIXME("\n\tCLSID:\t%s,\n\tIID:\t%s\n",debugstr_guid(rclsid),debugstr_guid(iid));
1873 *ppv = NULL;
1874 return CLASS_E_CLASSNOTAVAILABLE;
1878 /***
1879 * COM_RevokeAllClasses
1881 * This method is called when the COM libraries are uninitialized to
1882 * release all the references to the class objects registered with
1883 * the library
1885 static void COM_RevokeAllClasses()
1887 while (firstRegisteredClass!=0)
1889 CoRevokeClassObject(firstRegisteredClass->dwCookie);
1893 /****************************************************************************
1894 * COM External Lock methods implementation
1897 /****************************************************************************
1898 * Public - Method that increments the count for a IUnknown* in the linked
1899 * list. The item is inserted if not already in the list.
1901 static void COM_ExternalLockAddRef(
1902 IUnknown *pUnk)
1904 COM_ExternalLock *externalLock = COM_ExternalLockFind(pUnk);
1907 * Add an external lock to the object. If it was already externally
1908 * locked, just increase the reference count. If it was not.
1909 * add the item to the list.
1911 if ( externalLock == EL_NOT_FOUND )
1912 COM_ExternalLockInsert(pUnk);
1913 else
1914 externalLock->uRefCount++;
1917 * Add an internal lock to the object
1919 IUnknown_AddRef(pUnk);
1922 /****************************************************************************
1923 * Public - Method that decrements the count for a IUnknown* in the linked
1924 * list. The item is removed from the list if its count end up at zero or if
1925 * bRelAll is TRUE.
1927 static void COM_ExternalLockRelease(
1928 IUnknown *pUnk,
1929 BOOL bRelAll)
1931 COM_ExternalLock *externalLock = COM_ExternalLockFind(pUnk);
1933 if ( externalLock != EL_NOT_FOUND )
1937 externalLock->uRefCount--; /* release external locks */
1938 IUnknown_Release(pUnk); /* release local locks as well */
1940 if ( bRelAll == FALSE )
1941 break; /* perform single release */
1943 } while ( externalLock->uRefCount > 0 );
1945 if ( externalLock->uRefCount == 0 ) /* get rid of the list entry */
1946 COM_ExternalLockDelete(externalLock);
1949 /****************************************************************************
1950 * Public - Method that frees the content of the list.
1952 static void COM_ExternalLockFreeList()
1954 COM_ExternalLock *head;
1956 head = elList.head; /* grab it by the head */
1957 while ( head != EL_END_OF_LIST )
1959 COM_ExternalLockDelete(head); /* get rid of the head stuff */
1961 head = elList.head; /* get the new head... */
1965 /****************************************************************************
1966 * Public - Method that dump the content of the list.
1968 void COM_ExternalLockDump()
1970 COM_ExternalLock *current = elList.head;
1972 DPRINTF("\nExternal lock list contains:\n");
1974 while ( current != EL_END_OF_LIST )
1976 DPRINTF( "\t%p with %lu references count.\n", current->pUnk, current->uRefCount);
1978 /* Skip to the next item */
1979 current = current->next;
1984 /****************************************************************************
1985 * Internal - Find a IUnknown* in the linked list
1987 static COM_ExternalLock* COM_ExternalLockFind(
1988 IUnknown *pUnk)
1990 return COM_ExternalLockLocate(elList.head, pUnk);
1993 /****************************************************************************
1994 * Internal - Recursivity agent for IUnknownExternalLockList_Find
1996 static COM_ExternalLock* COM_ExternalLockLocate(
1997 COM_ExternalLock *element,
1998 IUnknown *pUnk)
2000 if ( element == EL_END_OF_LIST )
2001 return EL_NOT_FOUND;
2003 else if ( element->pUnk == pUnk ) /* We found it */
2004 return element;
2006 else /* Not the right guy, keep on looking */
2007 return COM_ExternalLockLocate( element->next, pUnk);
2010 /****************************************************************************
2011 * Internal - Insert a new IUnknown* to the linked list
2013 static BOOL COM_ExternalLockInsert(
2014 IUnknown *pUnk)
2016 COM_ExternalLock *newLock = NULL;
2017 COM_ExternalLock *previousHead = NULL;
2020 * Allocate space for the new storage object
2022 newLock = HeapAlloc(GetProcessHeap(), 0, sizeof(COM_ExternalLock));
2024 if (newLock!=NULL)
2026 if ( elList.head == EL_END_OF_LIST )
2028 elList.head = newLock; /* The list is empty */
2030 else
2033 * insert does it at the head
2035 previousHead = elList.head;
2036 elList.head = newLock;
2040 * Set new list item data member
2042 newLock->pUnk = pUnk;
2043 newLock->uRefCount = 1;
2044 newLock->next = previousHead;
2046 return TRUE;
2048 else
2049 return FALSE;
2052 /****************************************************************************
2053 * Internal - Method that removes an item from the linked list.
2055 static void COM_ExternalLockDelete(
2056 COM_ExternalLock *itemList)
2058 COM_ExternalLock *current = elList.head;
2060 if ( current == itemList )
2063 * this section handles the deletion of the first node
2065 elList.head = itemList->next;
2066 HeapFree( GetProcessHeap(), 0, itemList);
2068 else
2072 if ( current->next == itemList ) /* We found the item to free */
2074 current->next = itemList->next; /* readjust the list pointers */
2076 HeapFree( GetProcessHeap(), 0, itemList);
2077 break;
2080 /* Skip to the next item */
2081 current = current->next;
2083 } while ( current != EL_END_OF_LIST );
2087 /***********************************************************************
2088 * COMPOBJ_DllEntryPoint [COMPOBJ.entry]
2090 * Initialization code for the COMPOBJ DLL
2092 * RETURNS:
2094 BOOL WINAPI COMPOBJ_DllEntryPoint(DWORD Reason, HINSTANCE16 hInst, WORD ds, WORD HeapSize, DWORD res1, WORD res2)
2096 TRACE("(%08lx, %04x, %04x, %04x, %08lx, %04x)\n", Reason, hInst, ds, HeapSize,
2097 res1, res2);
2098 switch(Reason)
2100 case DLL_PROCESS_ATTACH:
2101 COMPOBJ_Attach++;
2102 if(COMPOBJ_hInstance)
2104 ERR("compobj.dll instantiated twice!\n");
2106 * We should return FALSE here, but that will break
2107 * most apps that use CreateProcess because we do
2108 * not yet support seperate address-spaces.
2110 return TRUE;
2113 COMPOBJ_hInstance = hInst;
2114 break;
2116 case DLL_PROCESS_DETACH:
2117 if(!--COMPOBJ_Attach)
2118 COMPOBJ_hInstance = 0;
2119 break;
2121 return TRUE;