|
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*============================================================
*
* Class: __HResults
//
// <OWNER>kimhamil</OWNER>
*
* <EMAIL>Author: Shajan Dasan</EMAIL>
*
* Purpose: The HRESULTS used by IsolatedStorage
*
* Date: Feb 15, 2000
*
===========================================================*/
namespace System.IO.IsolatedStorage {
internal static class __HResults
{
public const int COR_E_ISOSTORE = unchecked((int)0x80131450);
}
}
|