quartz: Return increasing monitor GUID on VMR7 monitor enumeration.
[wine/multimedia.git] / dlls / atl80 / atl80.c
blob487ee49b69ff1ec3b866cb9c05253a6176f3b28e
1 /*
2 * Copyright 2012 Stefan Leichter
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include <stdarg.h>
20 #include <stdio.h>
22 #define COBJMACROS
24 #include "windef.h"
25 #include "winbase.h"
26 #include "winerror.h"
27 #include "winuser.h"
28 #include "atlbase.h"
30 #include "wine/debug.h"
31 #include "wine/unicode.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(atl);
35 /***********************************************************************
36 * AtlRegisterTypeLib [atl80.18]
38 HRESULT WINAPI AtlComModuleRegisterServer(_ATL_COM_MODULE *mod, BOOL bRegTypeLib, const CLSID *clsid)
40 const struct _ATL_CATMAP_ENTRY *catmap;
41 _ATL_OBJMAP_ENTRY **iter;
42 HRESULT hres;
44 TRACE("(%p %x %s)\n", mod, bRegTypeLib, debugstr_guid(clsid));
46 for(iter = mod->m_ppAutoObjMapFirst; iter < mod->m_ppAutoObjMapLast; iter++) {
47 if(!*iter || (clsid && !IsEqualCLSID((*iter)->pclsid, clsid)))
48 continue;
50 TRACE("Registering clsid %s\n", debugstr_guid((*iter)->pclsid));
51 hres = (*iter)->pfnUpdateRegistry(TRUE);
52 if(FAILED(hres))
53 return hres;
55 catmap = (*iter)->pfnGetCategoryMap();
56 if(catmap) {
57 hres = AtlRegisterClassCategoriesHelper((*iter)->pclsid, catmap, TRUE);
58 if(FAILED(hres))
59 return hres;
63 if(bRegTypeLib) {
64 hres = AtlRegisterTypeLib(mod->m_hInstTypeLib, NULL);
65 if(FAILED(hres))
66 return hres;
69 return S_OK;
72 /***********************************************************************
73 * AtlRegisterTypeLib [atl80.19]
75 HRESULT WINAPI AtlRegisterTypeLib(HINSTANCE inst, const WCHAR *index)
77 ITypeLib *typelib;
78 BSTR path;
79 HRESULT hres;
81 TRACE("(%p %s)\n", inst, debugstr_w(index));
83 hres = AtlLoadTypeLib(inst, index, &path, &typelib);
84 if(FAILED(hres))
85 return hres;
87 hres = RegisterTypeLib(typelib, path, NULL); /* FIXME: pass help directory */
88 ITypeLib_Release(typelib);
89 SysFreeString(path);
90 return hres;
93 /***********************************************************************
94 * AtlGetVersion [atl80.@]
96 DWORD WINAPI AtlGetVersion(void *pReserved)
98 TRACE("version %04x (%p)\n", _ATL_VER, pReserved);
99 return _ATL_VER;
102 /**********************************************************************
103 * AtlAxWin class window procedure
105 static LRESULT CALLBACK AtlAxWin_wndproc( HWND hWnd, UINT wMsg, WPARAM wParam, LPARAM lParam )
107 if ( wMsg == WM_CREATE )
109 DWORD len = GetWindowTextLengthW( hWnd ) + 1;
110 WCHAR *ptr = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
111 if (!ptr)
112 return 1;
113 GetWindowTextW( hWnd, ptr, len );
114 AtlAxCreateControlEx( ptr, hWnd, NULL, NULL, NULL, NULL, NULL );
115 HeapFree( GetProcessHeap(), 0, ptr );
116 return 0;
118 return DefWindowProcW( hWnd, wMsg, wParam, lParam );
121 BOOL WINAPI AtlAxWinInit(void)
123 WNDCLASSEXW wcex;
124 const WCHAR AtlAxWin80[] = {'A','t','l','A','x','W','i','n','8','0',0};
125 const WCHAR AtlAxWinLic80[] = {'A','t','l','A','x','W','i','n','L','i','c','8','0',0};
127 FIXME("version %04x semi-stub\n", _ATL_VER);
129 if ( FAILED( OleInitialize(NULL) ) )
130 return FALSE;
132 wcex.cbSize = sizeof(wcex);
133 wcex.style = CS_GLOBALCLASS | CS_DBLCLKS;
134 wcex.cbClsExtra = 0;
135 wcex.cbWndExtra = 0;
136 wcex.hInstance = GetModuleHandleW( NULL );
137 wcex.hIcon = NULL;
138 wcex.hCursor = NULL;
139 wcex.hbrBackground = NULL;
140 wcex.lpszMenuName = NULL;
141 wcex.hIconSm = 0;
143 wcex.lpfnWndProc = AtlAxWin_wndproc;
144 wcex.lpszClassName = AtlAxWin80;
145 if ( !RegisterClassExW( &wcex ) )
146 return FALSE;
148 wcex.lpszClassName = AtlAxWinLic80;
149 if ( !RegisterClassExW( &wcex ) )
150 return FALSE;
152 return TRUE;