mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
79d850f2d7
- added comment about OleErrorInfo field in TEB
46 lines
977 B
C
46 lines
977 B
C
/*
|
|
* ErrorInfo API
|
|
*
|
|
* Copyright 2000 Patrik Stridvall
|
|
*
|
|
*
|
|
* The errorinfo is a per-thread object. The reference is stored in the
|
|
* TEB at offset 0xf80
|
|
*/
|
|
|
|
#include "debugtools.h"
|
|
#include "oleauto.h"
|
|
#include "windef.h"
|
|
#include "winerror.h"
|
|
|
|
DEFAULT_DEBUG_CHANNEL(ole)
|
|
|
|
/***********************************************************************
|
|
* CreateErrorInfo
|
|
*/
|
|
HRESULT WINAPI CreateErrorInfo(ICreateErrorInfo **pperrinfo)
|
|
{
|
|
FIXME("(%p): stub:\n", pperrinfo);
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* GetErrorInfo
|
|
*/
|
|
HRESULT WINAPI GetErrorInfo(ULONG dwReserved, IErrorInfo **pperrinfo)
|
|
{
|
|
FIXME("(%ld, %p): stub:\n", dwReserved, pperrinfo);
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* SetErrorInfo
|
|
*/
|
|
HRESULT WINAPI SetErrorInfo(ULONG dwReserved, IErrorInfo *perrinfo)
|
|
{
|
|
FIXME("(%ld, %p): stub:\n", dwReserved, perrinfo);
|
|
|
|
return S_OK;
|
|
}
|