osquery-1/osquery/core/core.h
2020-09-01 23:29:26 -04:00

25 lines
541 B
C++

/**
* Copyright (c) 2014-present, The osquery authors
*
* This source code is licensed as defined by the LICENSE file found in the
* root directory of this source tree.
*
* SPDX-License-Identifier: (Apache-2.0 OR GPL-2.0-only)
*/
#pragma once
#include <string>
#include <osquery/utils/macros/macros.h>
/// A configuration error is catastrophic and should exit the watcher.
#define EXIT_CATASTROPHIC 78
namespace osquery {
/// Custom literal for size_t.
uint64_t operator"" _sz(unsigned long long int x);
} // namespace osquery