Chromium Code Reviews| Index: third_party/openvr/src/src/vrcommon/dirtools_public.h |
| diff --git a/third_party/openvr/src/src/vrcommon/dirtools_public.h b/third_party/openvr/src/src/vrcommon/dirtools_public.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..21a2374569d5437e36c5aabc9d29cf032235919b |
| --- /dev/null |
| +++ b/third_party/openvr/src/src/vrcommon/dirtools_public.h |
| @@ -0,0 +1,17 @@ |
| +//========= Copyright Valve Corporation ============// |
| +#pragma once |
| + |
| +#include <stdint.h> |
| +#include <string> |
| + |
| + |
| +#if !defined(_WIN32) |
| +#include <sys/types.h> |
| +#include <sys/stat.h> |
| +#endif |
| + |
| + |
| +extern bool BCreateDirectoryRecursive( const char *pchPath ); |
| +extern bool BCreateDirectory( const char *pchPath ); |
| + |
| + |