osquery-1/osquery/core/sqlite_util.h

13 lines
329 B
C
Raw Normal View History

// Copyright 2004-present Facebook. All Rights Reserved.
#pragma once
2014-08-15 07:25:30 +00:00
namespace osquery {
namespace core {
// the callback for populating a std::vector<row> set of results. "argument"
// should be a non-const reference to a std::vector<row>
int query_data_callback(void *argument, int argc, char *argv[], char *column[]);
2014-08-15 07:25:30 +00:00
}
}