mastodon.cardina1.red は、数々の独立したMastodonサーバーのうちのひとつです。サーバーに登録してFediverseのコミュニティに加わってみませんか。

サーバーの情報

3
人のアクティブユーザー

らりお・ザ・何らかの🈗然㊌ソムリエ

Signature:
void height()

Summary:
Returns the height of the screen as an exception.
Returns the error message as a string exception if failed.

Example:

```
try {
screen.height();
} catch (unsigned int height) {
std::cout << "height = " << height << std::endl;
} catch (const char *msg) {
std::cerr << "cannot retrieve the screen height: " << msg << std::endl;
}
```