1/* Aseprite
2 Copyright (C) 2020 Igara Studio S.A.
3
4 This program is distributed under the terms of
5 the End-User License Agreement for Aseprite. */
6
7#ifndef VER_INFO_H_INCLUDED
8#define VER_INFO_H_INCLUDED
9#pragma once
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15const char* get_app_name();
16const char* get_app_version();
17const char* get_app_copyright();
18
19const char* get_app_url();
20const char* get_app_download_url();
21const char* get_app_contributors_url();
22const char* get_app_news_rss_url();
23const char* get_app_update_url();
24
25#ifdef __cplusplus
26}
27#endif
28
29#endif /* VER_INFO_H_INCLUDED */
30