atl100: Added AtlSetPerUserRegistration stub implementation.

This commit is contained in:
Jactry Zeng 2013-03-14 00:36:14 +08:00 committed by Alexandre Julliard
parent a448427bf9
commit 50e323502e
3 changed files with 11 additions and 1 deletions

View File

@ -742,6 +742,15 @@ HRESULT WINAPI AtlGetObjectSourceInterface(IUnknown *unk, GUID *libid, IID *iid,
return hres;
}
/***********************************************************************
* AtlSetPerUserRegistration [atl100.67]
*/
HRESULT WINAPI AtlSetPerUserRegistration(cpp_bool bEnable)
{
FIXME("stub: bEnable: %d\n", bEnable);
return E_NOTIMPL;
}
/***********************************************************************
* AtlGetPerUserRegistration [atl100.68]
*/

View File

@ -48,5 +48,5 @@
64 stdcall AtlCallTermFunc(ptr)
65 stdcall AtlWinModuleInit(ptr)
66 stub AtlWinModuleTerm
67 stub AtlSetPerUserRegistration
67 stdcall AtlSetPerUserRegistration(long)
68 stdcall AtlGetPerUserRegistration(ptr)

View File

@ -259,6 +259,7 @@ HRESULT WINAPI AtlComModuleRegisterClassObjects(_ATL_COM_MODULE*,DWORD,DWORD);
HRESULT WINAPI AtlComModuleUnregisterServer(_ATL_COM_MODULE*,BOOL,const CLSID*);
BOOL WINAPI AtlWaitWithMessageLoop(HANDLE);
HRESULT WINAPI AtlGetObjectSourceInterface(IUnknown*,GUID*,IID*,unsigned short*,unsigned short*);
HRESULT WINAPI AtlSetPerUserRegistration(unsigned char /*bool*/);
HRESULT WINAPI AtlGetPerUserRegistration(unsigned char /*bool*/ *);
#endif /* __WINE_ATLBASE_H__ */