Esempio n. 1
0
		internal static extern int CeGetStoreInformation(out STORE_INFORMATION lpsi);
Esempio n. 2
0
		/// <summary>
		/// This function fills in a STORE_INFORMATION structure with the size of the object store and the amount of free space currently in the object store
		/// </summary>
		/// <param name="StoreInfo"></param>
		public void GetDeviceStoreInformation(out STORE_INFORMATION StoreInfo)
		{
			CheckConnection();

			try
			{
				CeGetStoreInformation(out StoreInfo);
			}
			catch(Exception)
			{
				throw new RAPIException("Error retrieving store information.");
			}
		}