| DirectX SDK | 
The IDirectDrawSurface7::GetAttachedSurface method obtains the attached surface that has the specified capabilities and increments the reference count of the retrieved interface.
HRESULT GetAttachedSurface( LPDDSCAPS2 lpDDSCaps, LPDIRECTDRAWSURFACE7 FAR *lplpDDAttachedSurface );
If the method succeeds, the return value is DD_OK.
If it fails, the method can return one of the following error values:
| DDERR_INVALIDOBJECT | 
| DDERR_INVALIDPARAMS | 
| DDERR_NOTFOUND | 
| DDERR_SURFACELOST | 
Attachments are used to connect multiple DirectDrawSurface objects into complex structures, like the ones needed to support 3-D page flipping with z-buffers. This method fails if more than one surface is attached that matches the capabilities requested. In this case, the application must use the IDirectDrawSurface7::EnumAttachedSurfaces method to obtain the attached surfaces.
  Windows NT/2000: Requires Windows 2000.
  Windows 95/98: Requires Windows 98.
  Header: Declared in ddraw.h.