mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-06 01:25:20 +00:00
25 lines
541 B
C++
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
|