mirror of
https://github.com/bnmgh1/NodeSandbox.git
synced 2025-04-21 05:30:12 +08:00
31 lines
731 B
C++
31 lines
731 B
C++
//
|
|
// Copyright (c) 2014 The ANGLE Project Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
//
|
|
|
|
// system_utils.h: declaration of OS-specific utility functions
|
|
|
|
#ifndef SAMPLE_UTIL_PATH_UTILS_H
|
|
#define SAMPLE_UTIL_PATH_UTILS_H
|
|
|
|
#include <string>
|
|
|
|
namespace angle
|
|
{
|
|
|
|
std::string GetExecutablePath();
|
|
std::string GetExecutableDirectory();
|
|
|
|
// Cross platform equivalent of the Windows Sleep function
|
|
void Sleep(unsigned int milliseconds);
|
|
|
|
void SetLowPriorityProcess();
|
|
|
|
// Write a debug message, either to a standard output or Debug window.
|
|
void WriteDebugMessage(const char *format, ...);
|
|
|
|
} // namespace angle
|
|
|
|
#endif // SAMPLE_UTIL_PATH_UTILS_H
|