• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Protocol Buffers - Google's data interchange format
2// Copyright 2023 Google LLC.  All rights reserved.
3//
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file or at
6// https://developers.google.com/open-source/licenses/bsd
7
8syntax = "proto3";
9
10package hpb_unittest;
11
12enum TestEnum {
13  DEVICE_UNKNOWN = 0;
14  DEVICE_KEYBOARD = 1;
15  DEVICE_MOUSE = 2;
16  DEVICE_MONITOR = 3;
17}
18