2002-08-03 02:17:10 +02:00
|
|
|
/*
|
|
|
|
* 16 bit ole functions
|
|
|
|
*
|
|
|
|
* Copyright 1995 Martin von Loewis
|
|
|
|
* Copyright 1998 Justin Bradford
|
|
|
|
* Copyright 1999 Francis Beaudet
|
|
|
|
* Copyright 1999 Sylvain St-Germain
|
|
|
|
* Copyright 2002 Marcus Meissner
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-08-03 02:17:10 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2002-08-03 02:17:10 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "winbase.h"
|
2003-09-09 21:39:31 +02:00
|
|
|
#include "winuser.h"
|
2002-08-03 02:17:10 +02:00
|
|
|
#include "objbase.h"
|
|
|
|
#include "ole2.h"
|
|
|
|
#include "ole2ver.h"
|
|
|
|
#include "rpc.h"
|
|
|
|
#include "winerror.h"
|
|
|
|
#include "winreg.h"
|
|
|
|
#include "wownt32.h"
|
|
|
|
#include "wtypes.h"
|
|
|
|
#include "wine/unicode.h"
|
|
|
|
#include "wine/winbase16.h"
|
|
|
|
#include "compobj_private.h"
|
|
|
|
#include "ifs.h"
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(ole);
|
|
|
|
|
2005-06-06 21:50:35 +02:00
|
|
|
static HTASK16 hETask = 0;
|
|
|
|
static WORD Table_ETask[62];
|
2002-08-03 02:17:10 +02:00
|
|
|
|
2005-06-06 21:50:35 +02:00
|
|
|
static LPMALLOC16 currentMalloc16=NULL;
|
2002-08-03 02:17:10 +02:00
|
|
|
|
|
|
|
/* --- IMalloc16 implementation */
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
/* IUnknown fields */
|
2005-06-06 21:50:35 +02:00
|
|
|
const IMalloc16Vtbl *lpVtbl;
|
2002-08-03 02:17:10 +02:00
|
|
|
DWORD ref;
|
|
|
|
/* IMalloc16 fields */
|
|
|
|
} IMalloc16Impl;
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* IMalloc16_QueryInterface [COMPOBJ.500]
|
|
|
|
*/
|
2006-06-12 21:34:59 +02:00
|
|
|
HRESULT CDECL IMalloc16_fnQueryInterface(IMalloc16* iface,REFIID refiid,LPVOID *obj) {
|
2004-09-09 23:03:58 +02:00
|
|
|
IMalloc16Impl *This = (IMalloc16Impl *)iface;
|
2002-08-03 02:17:10 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->QueryInterface(%s,%p)\n",This,debugstr_guid(refiid),obj);
|
|
|
|
if ( !memcmp(&IID_IUnknown,refiid,sizeof(IID_IUnknown)) ||
|
|
|
|
!memcmp(&IID_IMalloc,refiid,sizeof(IID_IMalloc))
|
|
|
|
) {
|
|
|
|
*obj = This;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return OLE_E_ENUM_NOMORE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* IMalloc16_AddRef [COMPOBJ.501]
|
|
|
|
*/
|
2006-06-12 21:34:59 +02:00
|
|
|
ULONG CDECL IMalloc16_fnAddRef(IMalloc16* iface) {
|
2004-09-09 23:03:58 +02:00
|
|
|
IMalloc16Impl *This = (IMalloc16Impl *)iface;
|
2002-08-03 02:17:10 +02:00
|
|
|
TRACE("(%p)->AddRef()\n",This);
|
|
|
|
return 1; /* cannot be freed */
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* IMalloc16_Release [COMPOBJ.502]
|
|
|
|
*/
|
2006-06-12 21:34:59 +02:00
|
|
|
ULONG CDECL IMalloc16_fnRelease(IMalloc16* iface) {
|
2004-09-09 23:03:58 +02:00
|
|
|
IMalloc16Impl *This = (IMalloc16Impl *)iface;
|
2002-08-03 02:17:10 +02:00
|
|
|
TRACE("(%p)->Release()\n",This);
|
|
|
|
return 1; /* cannot be freed */
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* IMalloc16_Alloc [COMPOBJ.503]
|
|
|
|
*/
|
2006-06-12 21:34:59 +02:00
|
|
|
SEGPTR CDECL IMalloc16_fnAlloc(IMalloc16* iface,DWORD cb) {
|
2004-09-09 23:03:58 +02:00
|
|
|
IMalloc16Impl *This = (IMalloc16Impl *)iface;
|
2002-08-03 02:17:10 +02:00
|
|
|
TRACE("(%p)->Alloc(%ld)\n",This,cb);
|
|
|
|
return MapLS( HeapAlloc( GetProcessHeap(), 0, cb ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2003-11-26 04:34:51 +01:00
|
|
|
* IMalloc16_Free [COMPOBJ.505]
|
2002-08-03 02:17:10 +02:00
|
|
|
*/
|
2006-06-12 21:34:59 +02:00
|
|
|
VOID CDECL IMalloc16_fnFree(IMalloc16* iface,SEGPTR pv)
|
2002-08-03 02:17:10 +02:00
|
|
|
{
|
2003-11-26 04:34:51 +01:00
|
|
|
void *ptr = MapSL(pv);
|
2004-09-09 23:03:58 +02:00
|
|
|
IMalloc16Impl *This = (IMalloc16Impl *)iface;
|
2003-11-26 04:34:51 +01:00
|
|
|
TRACE("(%p)->Free(%08lx)\n",This,pv);
|
2002-08-03 02:17:10 +02:00
|
|
|
UnMapLS(pv);
|
2003-11-26 04:34:51 +01:00
|
|
|
HeapFree( GetProcessHeap(), 0, ptr );
|
2002-08-03 02:17:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
2003-11-26 04:34:51 +01:00
|
|
|
* IMalloc16_Realloc [COMPOBJ.504]
|
2002-08-03 02:17:10 +02:00
|
|
|
*/
|
2006-06-12 21:34:59 +02:00
|
|
|
SEGPTR CDECL IMalloc16_fnRealloc(IMalloc16* iface,SEGPTR pv,DWORD cb)
|
2002-08-03 02:17:10 +02:00
|
|
|
{
|
2003-11-26 04:34:51 +01:00
|
|
|
SEGPTR ret;
|
2004-09-09 23:03:58 +02:00
|
|
|
IMalloc16Impl *This = (IMalloc16Impl *)iface;
|
2003-11-26 04:34:51 +01:00
|
|
|
TRACE("(%p)->Realloc(%08lx,%ld)\n",This,pv,cb);
|
|
|
|
if (!pv)
|
|
|
|
ret = IMalloc16_fnAlloc(iface, cb);
|
|
|
|
else if (cb) {
|
|
|
|
ret = MapLS( HeapReAlloc( GetProcessHeap(), 0, MapSL(pv), cb ) );
|
|
|
|
UnMapLS(pv);
|
|
|
|
} else {
|
|
|
|
IMalloc16_fnFree(iface, pv);
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
return ret;
|
2002-08-03 02:17:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* IMalloc16_GetSize [COMPOBJ.506]
|
|
|
|
*/
|
2006-06-12 21:34:59 +02:00
|
|
|
DWORD CDECL IMalloc16_fnGetSize(IMalloc16* iface,SEGPTR pv)
|
2002-08-03 02:17:10 +02:00
|
|
|
{
|
2004-09-09 23:03:58 +02:00
|
|
|
IMalloc16Impl *This = (IMalloc16Impl *)iface;
|
2002-08-03 02:17:10 +02:00
|
|
|
TRACE("(%p)->GetSize(%08lx)\n",This,pv);
|
|
|
|
return HeapSize( GetProcessHeap(), 0, MapSL(pv) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* IMalloc16_DidAlloc [COMPOBJ.507]
|
|
|
|
*/
|
2006-06-12 21:34:59 +02:00
|
|
|
INT16 CDECL IMalloc16_fnDidAlloc(IMalloc16* iface,LPVOID pv) {
|
2004-09-09 23:03:58 +02:00
|
|
|
IMalloc16 *This = (IMalloc16 *)iface;
|
2002-08-03 02:17:10 +02:00
|
|
|
TRACE("(%p)->DidAlloc(%p)\n",This,pv);
|
|
|
|
return (INT16)-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* IMalloc16_HeapMinimize [COMPOBJ.508]
|
|
|
|
*/
|
2006-06-12 21:34:59 +02:00
|
|
|
LPVOID CDECL IMalloc16_fnHeapMinimize(IMalloc16* iface) {
|
2004-09-09 23:03:58 +02:00
|
|
|
IMalloc16Impl *This = (IMalloc16Impl *)iface;
|
2002-08-03 02:17:10 +02:00
|
|
|
TRACE("(%p)->HeapMinimize()\n",This);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* IMalloc16_Constructor [VTABLE]
|
|
|
|
*/
|
|
|
|
LPMALLOC16
|
2005-12-12 12:42:44 +01:00
|
|
|
IMalloc16_Constructor(void)
|
2002-08-03 02:17:10 +02:00
|
|
|
{
|
2004-08-13 01:00:51 +02:00
|
|
|
static IMalloc16Vtbl vt16;
|
2002-08-03 02:17:10 +02:00
|
|
|
static SEGPTR msegvt16;
|
|
|
|
IMalloc16Impl* This;
|
|
|
|
HMODULE16 hcomp = GetModuleHandle16("COMPOBJ");
|
|
|
|
|
|
|
|
This = HeapAlloc( GetProcessHeap(), 0, sizeof(IMalloc16Impl) );
|
|
|
|
if (!msegvt16)
|
|
|
|
{
|
|
|
|
#define VTENT(x) vt16.x = (void*)GetProcAddress16(hcomp,"IMalloc16_"#x);assert(vt16.x)
|
|
|
|
VTENT(QueryInterface);
|
|
|
|
VTENT(AddRef);
|
|
|
|
VTENT(Release);
|
|
|
|
VTENT(Alloc);
|
|
|
|
VTENT(Realloc);
|
|
|
|
VTENT(Free);
|
|
|
|
VTENT(GetSize);
|
|
|
|
VTENT(DidAlloc);
|
|
|
|
VTENT(HeapMinimize);
|
|
|
|
#undef VTENT
|
|
|
|
msegvt16 = MapLS( &vt16 );
|
|
|
|
}
|
2005-06-06 21:50:35 +02:00
|
|
|
This->lpVtbl = (const IMalloc16Vtbl*)msegvt16;
|
2002-08-03 02:17:10 +02:00
|
|
|
This->ref = 1;
|
|
|
|
return (LPMALLOC16)MapLS( This );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CoGetMalloc [COMPOBJ.4]
|
2005-11-09 11:30:57 +01:00
|
|
|
*
|
|
|
|
* Retrieve the current win16 IMalloc interface.
|
|
|
|
*
|
2002-08-03 02:17:10 +02:00
|
|
|
* RETURNS
|
|
|
|
* The current win16 IMalloc
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI CoGetMalloc16(
|
|
|
|
DWORD dwMemContext, /* [in] unknown */
|
|
|
|
LPMALLOC16 * lpMalloc /* [out] current win16 malloc interface */
|
|
|
|
) {
|
|
|
|
if(!currentMalloc16)
|
|
|
|
currentMalloc16 = IMalloc16_Constructor();
|
|
|
|
*lpMalloc = currentMalloc16;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CoCreateStandardMalloc [COMPOBJ.71]
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI CoCreateStandardMalloc16(DWORD dwMemContext,
|
|
|
|
LPMALLOC16 *lpMalloc)
|
|
|
|
{
|
|
|
|
/* FIXME: docu says we shouldn't return the same allocator as in
|
|
|
|
* CoGetMalloc16 */
|
|
|
|
*lpMalloc = IMalloc16_Constructor();
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* CoInitialize [COMPOBJ.2]
|
|
|
|
* Set the win16 IMalloc used for memory management
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI CoInitialize16(
|
|
|
|
LPVOID lpReserved /* [in] pointer to win16 malloc interface */
|
|
|
|
) {
|
|
|
|
currentMalloc16 = (LPMALLOC16)lpReserved;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CoUninitialize [COMPOBJ.3]
|
|
|
|
* Don't know what it does.
|
|
|
|
* 3-Nov-98 -- this was originally misspelled, I changed it to what I
|
|
|
|
* believe is the correct spelling
|
|
|
|
*/
|
|
|
|
void WINAPI CoUninitialize16(void)
|
|
|
|
{
|
|
|
|
TRACE("()\n");
|
|
|
|
CoFreeAllLibraries();
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* IsEqualGUID [COMPOBJ.18]
|
|
|
|
*
|
|
|
|
* Compares two Unique Identifiers.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE if equal
|
|
|
|
*/
|
|
|
|
BOOL16 WINAPI IsEqualGUID16(
|
|
|
|
GUID* g1, /* [in] unique id 1 */
|
|
|
|
GUID* g2) /* [in] unique id 2 */
|
|
|
|
{
|
|
|
|
return !memcmp( g1, g2, sizeof(GUID) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* CLSIDFromString [COMPOBJ.20]
|
|
|
|
* Converts a unique identifier from its string representation into
|
|
|
|
* the GUID struct.
|
|
|
|
*
|
|
|
|
* Class id: DWORD-WORD-WORD-BYTES[2]-BYTES[6]
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* the converted GUID
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI CLSIDFromString16(
|
|
|
|
LPCOLESTR16 idstr, /* [in] string representation of guid */
|
|
|
|
CLSID *id) /* [out] GUID converted from string */
|
|
|
|
{
|
2006-01-09 18:40:17 +01:00
|
|
|
const BYTE *s;
|
|
|
|
int i;
|
|
|
|
BYTE table[256];
|
2002-08-03 02:17:10 +02:00
|
|
|
|
2006-01-09 18:40:17 +01:00
|
|
|
if (!idstr) {
|
|
|
|
memset( id, 0, sizeof (CLSID) );
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* validate the CLSID string */
|
|
|
|
if (strlen(idstr) != 38)
|
|
|
|
return CO_E_CLASSSTRING;
|
|
|
|
|
|
|
|
s = (const BYTE *) idstr;
|
|
|
|
if ((s[0]!='{') || (s[9]!='-') || (s[14]!='-') || (s[19]!='-') || (s[24]!='-') || (s[37]!='}'))
|
|
|
|
return CO_E_CLASSSTRING;
|
|
|
|
|
|
|
|
for (i=1; i<37; i++) {
|
|
|
|
if ((i == 9)||(i == 14)||(i == 19)||(i == 24)) continue;
|
|
|
|
if (!(((s[i] >= '0') && (s[i] <= '9')) ||
|
|
|
|
((s[i] >= 'a') && (s[i] <= 'f')) ||
|
|
|
|
((s[i] >= 'A') && (s[i] <= 'F'))))
|
|
|
|
return CO_E_CLASSSTRING;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("%s -> %p\n", s, id);
|
|
|
|
|
|
|
|
/* quick lookup table */
|
|
|
|
memset(table, 0, 256);
|
|
|
|
|
|
|
|
for (i = 0; i < 10; i++) {
|
|
|
|
table['0' + i] = i;
|
|
|
|
}
|
|
|
|
for (i = 0; i < 6; i++) {
|
|
|
|
table['A' + i] = i+10;
|
|
|
|
table['a' + i] = i+10;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* in form {XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX} */
|
|
|
|
|
|
|
|
id->Data1 = (table[s[1]] << 28 | table[s[2]] << 24 | table[s[3]] << 20 | table[s[4]] << 16 |
|
|
|
|
table[s[5]] << 12 | table[s[6]] << 8 | table[s[7]] << 4 | table[s[8]]);
|
|
|
|
id->Data2 = table[s[10]] << 12 | table[s[11]] << 8 | table[s[12]] << 4 | table[s[13]];
|
|
|
|
id->Data3 = table[s[15]] << 12 | table[s[16]] << 8 | table[s[17]] << 4 | table[s[18]];
|
|
|
|
|
|
|
|
/* these are just sequential bytes */
|
|
|
|
id->Data4[0] = table[s[20]] << 4 | table[s[21]];
|
|
|
|
id->Data4[1] = table[s[22]] << 4 | table[s[23]];
|
|
|
|
id->Data4[2] = table[s[25]] << 4 | table[s[26]];
|
|
|
|
id->Data4[3] = table[s[27]] << 4 | table[s[28]];
|
|
|
|
id->Data4[4] = table[s[29]] << 4 | table[s[30]];
|
|
|
|
id->Data4[5] = table[s[31]] << 4 | table[s[32]];
|
|
|
|
id->Data4[6] = table[s[33]] << 4 | table[s[34]];
|
|
|
|
id->Data4[7] = table[s[35]] << 4 | table[s[36]];
|
|
|
|
|
|
|
|
return S_OK;
|
2002-08-03 02:17:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* _xmalloc16 [internal]
|
|
|
|
* Allocates size bytes from the standard ole16 allocator.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* the allocated segmented pointer and a HRESULT
|
|
|
|
*/
|
2005-05-16 10:47:40 +02:00
|
|
|
static HRESULT
|
2002-08-03 02:17:10 +02:00
|
|
|
_xmalloc16(DWORD size, SEGPTR *ptr) {
|
|
|
|
LPMALLOC16 mllc;
|
|
|
|
DWORD args[2];
|
|
|
|
|
|
|
|
if (CoGetMalloc16(0,&mllc))
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
args[0] = (DWORD)mllc;
|
|
|
|
args[1] = size;
|
|
|
|
/* No need for a Callback entry, we have WOWCallback16Ex which does
|
|
|
|
* everything we need.
|
|
|
|
*/
|
2005-08-10 12:59:19 +02:00
|
|
|
if (!WOWCallback16Ex(
|
2005-06-06 21:50:35 +02:00
|
|
|
(DWORD)((const IMalloc16Vtbl*)MapSL(
|
2003-04-10 20:17:34 +02:00
|
|
|
(SEGPTR)((LPMALLOC16)MapSL((SEGPTR)mllc))->lpVtbl )
|
2002-08-03 02:17:10 +02:00
|
|
|
)->Alloc,
|
|
|
|
WCB16_CDECL,
|
|
|
|
2*sizeof(DWORD),
|
|
|
|
(LPVOID)args,
|
|
|
|
(LPDWORD)ptr
|
|
|
|
)) {
|
|
|
|
ERR("CallTo16 IMalloc16 (%ld) failed\n",size);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* StringFromCLSID [COMPOBJ.19]
|
|
|
|
* Converts a GUID into the respective string representation.
|
|
|
|
* The target string is allocated using the OLE IMalloc.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* the string representation and HRESULT
|
|
|
|
*/
|
|
|
|
|
|
|
|
HRESULT WINAPI StringFromCLSID16(
|
|
|
|
REFCLSID id, /* [in] the GUID to be converted */
|
|
|
|
LPOLESTR16 *idstr /* [out] a pointer to a to-be-allocated segmented pointer pointing to the resulting string */
|
|
|
|
|
|
|
|
) {
|
|
|
|
HRESULT ret;
|
|
|
|
|
|
|
|
ret = _xmalloc16(40,(SEGPTR*)idstr);
|
|
|
|
if (ret != S_OK)
|
|
|
|
return ret;
|
|
|
|
return WINE_StringFromCLSID(id,MapSL((SEGPTR)*idstr));
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* ProgIDFromCLSID [COMPOBJ.62]
|
2005-11-09 11:30:57 +01:00
|
|
|
*
|
2002-08-03 02:17:10 +02:00
|
|
|
* Converts a class id into the respective Program ID. (By using a registry lookup)
|
2005-11-09 11:30:57 +01:00
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* S_OK on success
|
|
|
|
* riid associated with the progid
|
2002-08-03 02:17:10 +02:00
|
|
|
*/
|
|
|
|
HRESULT WINAPI ProgIDFromCLSID16(
|
|
|
|
REFCLSID clsid, /* [in] class id as found in registry */
|
|
|
|
LPOLESTR16 *lplpszProgID/* [out] associated Prog ID */
|
|
|
|
) {
|
2005-06-20 15:14:22 +02:00
|
|
|
static const WCHAR wszProgID[] = {'P','r','o','g','I','D',0};
|
|
|
|
HKEY hkey;
|
2005-11-09 11:29:11 +01:00
|
|
|
HRESULT ret;
|
|
|
|
LONG len;
|
|
|
|
char *buffer;
|
2002-08-03 02:17:10 +02:00
|
|
|
|
2005-11-09 11:29:11 +01:00
|
|
|
ret = COM_OpenKeyForCLSID(clsid, wszProgID, KEY_READ, &hkey);
|
|
|
|
if (FAILED(ret))
|
|
|
|
return ret;
|
2005-06-20 15:14:22 +02:00
|
|
|
|
2005-11-09 11:29:11 +01:00
|
|
|
if (RegQueryValueA(hkey, NULL, NULL, &len))
|
|
|
|
ret = REGDB_E_READREGDB;
|
2002-08-03 02:17:10 +02:00
|
|
|
|
|
|
|
if (ret == S_OK)
|
|
|
|
{
|
2005-11-09 11:29:11 +01:00
|
|
|
buffer = HeapAlloc(GetProcessHeap(), 0, len);
|
|
|
|
if (RegQueryValueA(hkey, NULL, buffer, &len))
|
|
|
|
ret = REGDB_E_READREGDB;
|
2002-08-03 02:17:10 +02:00
|
|
|
|
|
|
|
if (ret == S_OK)
|
|
|
|
{
|
2005-11-09 11:29:11 +01:00
|
|
|
ret = _xmalloc16(len, (SEGPTR*)lplpszProgID);
|
2003-09-30 02:24:08 +02:00
|
|
|
if (ret == S_OK)
|
2005-11-09 11:29:11 +01:00
|
|
|
strcpy(MapSL((SEGPTR)*lplpszProgID),buffer);
|
2002-08-03 02:17:10 +02:00
|
|
|
}
|
2005-11-09 11:29:11 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, buffer);
|
2002-08-03 02:17:10 +02:00
|
|
|
}
|
2005-11-09 11:29:11 +01:00
|
|
|
RegCloseKey(hkey);
|
2002-08-03 02:17:10 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* LookupETask (COMPOBJ.94)
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI LookupETask16(HTASK16 *hTask,LPVOID p) {
|
|
|
|
FIXME("(%p,%p),stub!\n",hTask,p);
|
|
|
|
if ((*hTask = GetCurrentTask()) == hETask) {
|
|
|
|
memcpy(p, Table_ETask, sizeof(Table_ETask));
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* SetETask (COMPOBJ.95)
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI SetETask16(HTASK16 hTask, LPVOID p) {
|
|
|
|
FIXME("(%04x,%p),stub!\n",hTask,p);
|
|
|
|
hETask = hTask;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CALLOBJECTINWOW (COMPOBJ.201)
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI CallObjectInWOW(LPVOID p1,LPVOID p2) {
|
|
|
|
FIXME("(%p,%p),stub!\n",p1,p2);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* CoRegisterClassObject [COMPOBJ.5]
|
|
|
|
*
|
|
|
|
* Don't know where it registers it ...
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI CoRegisterClassObject16(
|
|
|
|
REFCLSID rclsid,
|
|
|
|
LPUNKNOWN pUnk,
|
|
|
|
DWORD dwClsContext, /* [in] CLSCTX flags indicating the context in which to run the executable */
|
|
|
|
DWORD flags, /* [in] REGCLS flags indicating how connections are made */
|
|
|
|
LPDWORD lpdwRegister
|
|
|
|
) {
|
|
|
|
FIXME("(%s,%p,0x%08lx,0x%08lx,%p),stub\n",
|
2005-06-20 15:14:22 +02:00
|
|
|
debugstr_guid(rclsid),pUnk,dwClsContext,flags,lpdwRegister
|
2002-08-03 02:17:10 +02:00
|
|
|
);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* CoRevokeClassObject [COMPOBJ.6]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI CoRevokeClassObject16(DWORD dwRegister) /* [in] token on class obj */
|
|
|
|
{
|
|
|
|
FIXME("(0x%08lx),stub!\n", dwRegister);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* CoFileTimeToDosDateTime [COMPOBJ.30]
|
|
|
|
*/
|
|
|
|
BOOL16 WINAPI CoFileTimeToDosDateTime16(const FILETIME *ft, LPWORD lpDosDate, LPWORD lpDosTime)
|
|
|
|
{
|
|
|
|
return FileTimeToDosDateTime(ft, lpDosDate, lpDosTime);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* CoDosDateTimeToFileTime [COMPOBJ.31]
|
|
|
|
*/
|
|
|
|
BOOL16 WINAPI CoDosDateTimeToFileTime16(WORD wDosDate, WORD wDosTime, FILETIME *ft)
|
|
|
|
{
|
|
|
|
return DosDateTimeToFileTime(wDosDate, wDosTime, ft);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* CoRegisterMessageFilter [COMPOBJ.27]
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI CoRegisterMessageFilter16(
|
|
|
|
LPMESSAGEFILTER lpMessageFilter,
|
|
|
|
LPMESSAGEFILTER *lplpMessageFilter
|
|
|
|
) {
|
|
|
|
FIXME("(%p,%p),stub!\n",lpMessageFilter,lplpMessageFilter);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* CoLockObjectExternal [COMPOBJ.63]
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI CoLockObjectExternal16(
|
|
|
|
LPUNKNOWN pUnk, /* [in] object to be locked */
|
|
|
|
BOOL16 fLock, /* [in] do lock */
|
|
|
|
BOOL16 fLastUnlockReleases /* [in] ? */
|
|
|
|
) {
|
|
|
|
FIXME("(%p,%d,%d),stub!\n",pUnk,fLock,fLastUnlockReleases);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CoGetState [COMPOBJ.115]
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI CoGetState16(LPDWORD state)
|
|
|
|
{
|
|
|
|
FIXME("(%p),stub!\n", state);
|
|
|
|
|
|
|
|
*state = 0;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* DllEntryPoint [COMPOBJ.116]
|
|
|
|
*
|
|
|
|
* Initialization code for the COMPOBJ DLL
|
|
|
|
*
|
|
|
|
* RETURNS:
|
|
|
|
*/
|
|
|
|
BOOL WINAPI COMPOBJ_DllEntryPoint(DWORD Reason, HINSTANCE16 hInst, WORD ds, WORD HeapSize, DWORD res1, WORD res2)
|
|
|
|
{
|
|
|
|
TRACE("(%08lx, %04x, %04x, %04x, %08lx, %04x)\n", Reason, hInst, ds, HeapSize, res1, res2);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2005-07-24 18:15:24 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CoMemAlloc [COMPOBJ.151]
|
|
|
|
*/
|
|
|
|
SEGPTR WINAPI CoMemAlloc(DWORD size, DWORD dwMemContext, DWORD x) {
|
|
|
|
HRESULT hres;
|
|
|
|
SEGPTR segptr;
|
|
|
|
|
|
|
|
/* FIXME: check context handling */
|
|
|
|
TRACE("(%ld, 0x%08lx, 0x%08lx)\n", size, dwMemContext, x);
|
|
|
|
hres = _xmalloc16(size, &segptr);
|
|
|
|
if (hres != S_OK)
|
|
|
|
return (SEGPTR)0;
|
|
|
|
return segptr;
|
|
|
|
}
|
2005-09-25 17:17:10 +02:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* CLSIDFromProgID [COMPOBJ.61]
|
|
|
|
*
|
|
|
|
* Converts a program ID into the respective GUID.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* progid [I] program id as found in registry
|
|
|
|
* riid [O] associated CLSID
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: S_OK
|
|
|
|
* Failure: CO_E_CLASSSTRING - the given ProgID cannot be found.
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI CLSIDFromProgID16(LPCOLESTR16 progid, LPCLSID riid)
|
|
|
|
{
|
|
|
|
char *buf,buf2[80];
|
|
|
|
LONG buf2len;
|
|
|
|
HRESULT err;
|
|
|
|
HKEY xhkey;
|
|
|
|
|
|
|
|
buf = HeapAlloc(GetProcessHeap(),0,strlen(progid)+8);
|
|
|
|
sprintf(buf,"%s\\CLSID",progid);
|
|
|
|
if ((err=RegOpenKeyA(HKEY_CLASSES_ROOT,buf,&xhkey))) {
|
|
|
|
HeapFree(GetProcessHeap(),0,buf);
|
|
|
|
return CO_E_CLASSSTRING;
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(),0,buf);
|
|
|
|
buf2len = sizeof(buf2);
|
|
|
|
if ((err=RegQueryValueA(xhkey,NULL,buf2,&buf2len))) {
|
|
|
|
RegCloseKey(xhkey);
|
|
|
|
return CO_E_CLASSSTRING;
|
|
|
|
}
|
|
|
|
RegCloseKey(xhkey);
|
2006-01-09 18:40:17 +01:00
|
|
|
return CLSIDFromString16(buf2,riid);
|
2005-09-25 17:17:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CoGetClassObject [COMPOBJ.7]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI CoGetClassObject16(
|
|
|
|
REFCLSID rclsid, DWORD dwClsContext, COSERVERINFO *pServerInfo,
|
|
|
|
REFIID iid, LPVOID *ppv)
|
|
|
|
{
|
|
|
|
FIXME(", stub!\n\tCLSID:\t%s,\n\tIID:\t%s\n", debugstr_guid(rclsid), debugstr_guid(iid));
|
|
|
|
|
|
|
|
if (pServerInfo) {
|
|
|
|
FIXME("\tpServerInfo: name=%s\n",debugstr_w(pServerInfo->pwszName));
|
|
|
|
FIXME("\t\tpAuthInfo=%p\n",pServerInfo->pAuthInfo);
|
|
|
|
}
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CoCreateInstance [COMPOBJ.13]
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI CoCreateInstance16(
|
|
|
|
REFCLSID rclsid,
|
|
|
|
LPUNKNOWN pUnkOuter,
|
|
|
|
DWORD dwClsContext,
|
|
|
|
REFIID iid,
|
|
|
|
LPVOID *ppv)
|
|
|
|
{
|
|
|
|
FIXME("(%s, %p, %lx, %s, %p), stub!\n",
|
|
|
|
debugstr_guid(rclsid), pUnkOuter, dwClsContext, debugstr_guid(iid),
|
|
|
|
ppv
|
|
|
|
);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* DllGetClassObject [OLE2.4]
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI DllGetClassObject16(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
|
|
|
|
{
|
|
|
|
FIXME("(%s, %s, %p): stub\n", debugstr_guid(rclsid), debugstr_guid(iid), ppv);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* GetRunningObjectTable (OLE2.30)
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI
|
|
|
|
GetRunningObjectTable16(DWORD reserved, LPRUNNINGOBJECTTABLE *pprot)
|
|
|
|
{
|
|
|
|
FIXME("(%ld,%p),stub!\n",reserved,pprot);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|