mirror of
https://github.com/kunkundi/crossdesk.git
synced 2026-09-01 06:12:01 +08:00
29 lines
783 B
C++
29 lines
783 B
C++
/*
|
|
* @Author: DI JUNKUN
|
|
* @Date: 2026-09-01
|
|
* Copyright (c) 2026 by DI JUNKUN, All Rights Reserved.
|
|
*/
|
|
|
|
#ifndef _STREAM_NAMES_H_
|
|
#define _STREAM_NAMES_H_
|
|
|
|
#include <cstddef>
|
|
|
|
namespace crossdesk {
|
|
|
|
inline constexpr char kAudioStream[] = "control_audio";
|
|
inline constexpr char kDataStream[] = "data";
|
|
inline constexpr char kMouseStream[] = "mouse";
|
|
inline constexpr char kKeyboardStream[] = "keyboard";
|
|
inline constexpr char kControlStream[] = "control_data";
|
|
inline constexpr char kFileStream[] = "file";
|
|
inline constexpr char kFileFeedbackStream[] = "file_feedback";
|
|
inline constexpr char kClipboardStream[] = "clipboard";
|
|
|
|
inline constexpr std::size_t kFileChunkSize = 64 * 1024;
|
|
inline constexpr std::size_t kMaxClipboardBytes = 128 * 1024;
|
|
|
|
} // namespace crossdesk
|
|
|
|
#endif
|