This commit is contained in:
richgel99@gmail.com
2011-12-27 21:18:07 +00:00
commit 9f98ea7e22
192 changed files with 77747 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
// File: crn_win32_file_utils.h
// See Copyright Notice and license at the end of inc/crnlib.h
#pragma once
namespace crnlib
{
struct win32_file_utils
{
static bool does_file_exist(const wchar_t* pFilename);
static bool does_dir_exist(const wchar_t* pDir);
static bool get_file_size(const wchar_t* pFilename, uint64& file_size);
static bool get_file_size(const wchar_t* pFilename, uint32& file_size);
};
} // namespace crnlib