mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 02:18:53 +00:00
18 lines
383 B
C++
18 lines
383 B
C++
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#ifndef OSQUERY_TABLES_SYSTEM_PROCESSES_H
|
|
#define OSQUERY_TABLES_SYSTEM_PROCESSES_H
|
|
|
|
#include <string>
|
|
|
|
#include "osquery/database.h"
|
|
|
|
namespace osquery { namespace tables {
|
|
|
|
// genProcesses is the entry point for the processes table
|
|
osquery::db::QueryData genProcesses();
|
|
|
|
}}
|
|
|
|
#endif /* OSQUERY_TABLES_SYSTEM_PROCESSES_H */
|