mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-08 22:13:23 +00:00
26 lines
536 B
C++
26 lines
536 B
C++
// Aseprite Base Library
|
|
// Copyright (c) 2001-2013 David Capello
|
|
//
|
|
// This file is released under the terms of the MIT license.
|
|
// Read LICENSE.txt for more information.
|
|
|
|
#ifndef BASE_LAUNCHER_H_INCLUDED
|
|
#define BASE_LAUNCHER_H_INCLUDED
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace base {
|
|
namespace launcher {
|
|
|
|
bool open_url(const std::string& url);
|
|
bool open_file(const std::string& file);
|
|
bool open_folder(const std::string& file);
|
|
|
|
bool support_open_folder();
|
|
|
|
} // namespace launcher
|
|
} // namespace base
|
|
|
|
#endif
|