mirror of
https://github.com/MaskRay/ccls.git
synced 2025-02-21 07:59:27 +00:00
22 lines
771 B
C
22 lines
771 B
C
|
#pragma once
|
||
|
|
||
|
#include "config.h"
|
||
|
#include "file_consumer.h"
|
||
|
#include "import_manager.h"
|
||
|
#include "ipc_manager.h"
|
||
|
#include "project.h"
|
||
|
#include "threaded_queue.h"
|
||
|
#include "timestamp_manager.h"
|
||
|
#include "work_thread.h"
|
||
|
#include "working_files.h"
|
||
|
|
||
|
// Contains declarations for some of the thread-main functions.
|
||
|
|
||
|
WorkThread::Result IndexMain(Config* config,
|
||
|
FileConsumer::SharedState* file_consumer_shared,
|
||
|
TimestampManager* timestamp_manager,
|
||
|
ImportManager* import_manager,
|
||
|
Project* project,
|
||
|
WorkingFiles* working_files,
|
||
|
MultiQueueWaiter* waiter,
|
||
|
QueueManager* queue);
|