2011-10-28 23:48:40 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011, Google Inc.
|
|
|
|
*/
|
|
|
|
#ifndef BULK_CHECKIN_H
|
|
|
|
#define BULK_CHECKIN_H
|
|
|
|
|
2018-08-15 19:54:05 +02:00
|
|
|
#include "cache.h"
|
|
|
|
|
2019-04-29 10:28:14 +02:00
|
|
|
int index_bulk_checkin(struct object_id *oid,
|
2019-04-29 10:28:23 +02:00
|
|
|
int fd, size_t size, enum object_type type,
|
|
|
|
const char *path, unsigned flags);
|
2011-10-28 23:48:40 +02:00
|
|
|
|
2019-04-29 10:28:14 +02:00
|
|
|
void plug_bulk_checkin(void);
|
|
|
|
void unplug_bulk_checkin(void);
|
2011-10-28 23:48:40 +02:00
|
|
|
|
|
|
|
#endif
|