Green Sky
a3c9be2348
Some checks failed
ContinuousDelivery / linux-ubuntu (push) Failing after 5m18s
ContinuousDelivery / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android]) (push) Failing after 6m48s
ContinuousDelivery / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android]) (push) Failing after 6m37s
ContinuousIntegration / linux (push) Successful in 4m29s
ContinuousIntegration / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android]) (push) Failing after 6m16s
ContinuousIntegration / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android]) (push) Failing after 6m6s
ContinuousDelivery / windows (push) Has been cancelled
ContinuousDelivery / windows-asan (push) Has been cancelled
ContinuousIntegration / macos (push) Has been cancelled
ContinuousIntegration / windows (push) Has been cancelled
ContinuousDelivery / release (push) Has been cancelled
13 lines
297 B
C++
13 lines
297 B
C++
#pragma once
|
|
|
|
// returns the mimetype (c-string) of the image in the clipboard
|
|
// or nullptr, if there is none
|
|
const char* clipboardHasImage(void);
|
|
const char* clipboardHasFileList(void);
|
|
|
|
bool mimeIsImage(const char* mime_type);
|
|
bool mimeIsFileList(const char* mime_type);
|
|
|
|
// TODO: add is file
|
|
|