27 lines
583 B
C++
27 lines
583 B
C++
|
//+---------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
// Copyright (C) Microsoft Corporation, 1992 - 1994.
|
||
|
//
|
||
|
// File: asyncerr.hxx
|
||
|
//
|
||
|
// Contents: New error codes for async storage
|
||
|
//
|
||
|
// Classes:
|
||
|
//
|
||
|
// Functions:
|
||
|
//
|
||
|
// History: 03-Jan-96 PhilipLa Created
|
||
|
//
|
||
|
//
|
||
|
//----------------------------------------------------------------------------
|
||
|
|
||
|
#ifndef __ASYNCERR_HXX__
|
||
|
#define __ASYNCERR_HXX__
|
||
|
|
||
|
#ifndef STG_E_PENDINGCONTROL
|
||
|
#define STG_E_PENDINGCONTROL _HRESULT_TYPEDEF_(0x80030204L)
|
||
|
#endif
|
||
|
|
||
|
#endif // #ifndef __ASYNCERR_HXX__
|