mirror of
https://github.com/overte-org/overte.git
synced 2025-07-26 07:26:37 +02:00
21 lines
483 B
C++
21 lines
483 B
C++
|
|
//
|
|
// ClientServerUtils.h
|
|
// libraries/networking/src
|
|
//
|
|
// Created by Ryan Huffman on 2017/01/20
|
|
// Copyright 2017 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_ClientServerUtils_h
|
|
#define hifi_ClientServerUtils_h
|
|
|
|
#include <cstdint>
|
|
|
|
using MessageID = uint32_t;
|
|
const MessageID INVALID_MESSAGE_ID = 0;
|
|
|
|
#endif // hifi_ClientServerUtils_h
|