17 lines
355 B
C++
17 lines
355 B
C++
/*
|
|
* Copyright 2022 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkGetExecutablePath_DEFINED
|
|
#define SkGetExecutablePath_DEFINED
|
|
|
|
#include <string>
|
|
|
|
/** Returns a fully-qualified path to the currently-running executable. */
|
|
std::string SkGetExecutablePath();
|
|
|
|
#endif
|