mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
c55eb57e40
Summary: osquery::experimental::tracing -> osquery::events osquery::experimental::events -> osquery::events That's already a bit messy, let's put some order. Reviewed By: guliashvili Differential Revision: D14722735 fbshipit-source-id: 02b7e8199e7153e3aeeddd1fa7cb6f197c191ce7
20 lines
404 B
C++
20 lines
404 B
C++
/**
|
|
* Copyright (c) 2014-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed in accordance with the terms specified in
|
|
* the LICENSE file found in the root directory of this source tree.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace osquery {
|
|
namespace events {
|
|
|
|
void dispatchSerializedEvent(const std::string& event);
|
|
|
|
} // namespace events
|
|
} // namespace osquery
|