Source release v3.5.0

This commit is contained in:
Gene Morgan
2017-11-28 17:42:16 -08:00
parent 501c22890d
commit 31381a1311
155 changed files with 16680 additions and 3816 deletions

View File

@@ -0,0 +1,22 @@
// Copyright 2017 Google Inc. All Rights Reserved
/*********************************************************************
* level3_file_system_factory.h
*
* Creates a single OEMCrypto_Level3FileSystem.
*********************************************************************/
#ifndef LEVEL3_FILE_SYSTEM_FACTORY_H_
#define LEVEL3_FILE_SYSTEM_FACTORY_H_
#include "level3_file_system.h"
namespace wvoec3 {
OEMCrypto_Level3FileSystem* createLevel3FileSystem();
void deleteLevel3FileSystem(OEMCrypto_Level3FileSystem* file_system);
}
#endif // LEVEL3_FILE_SYSTEM_FACTORY_H_