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 |
12 | extern "C" { |
13 | #endif |
14 | |
15 | const char* get_app_name(); |
16 | const char* get_app_version(); |
17 | const char* get_app_copyright(); |
18 | |
19 | const char* get_app_url(); |
20 | const char* get_app_download_url(); |
21 | const char* get_app_contributors_url(); |
22 | const char* (); |
23 | const char* get_app_update_url(); |
24 | |
25 | #ifdef __cplusplus |
26 | } |
27 | #endif |
28 | |
29 | #endif /* VER_INFO_H_INCLUDED */ |
30 | |