syntax = "proto2";
import "yara.proto";
package math;
option (yara.module_options) = {
name : "math"
root_message: "math.Math"
rust_module: "math"
cargo_feature: "math-module"
};
message Math {
// This module contains only exported functions, and doesn't return any data
}
enum Consts {
option (yara.enum_options).inline = true;
MEAN_BYTES = 0 [(yara.enum_value).f64 = 127.5];
}