1 /* 2 * Copyright (c) 2020-2021 Huawei Device Co., Ltd. 3 * 4 * HDF is dual licensed: you can use it either under the terms of 5 * the GPL, or the BSD license, at your option. 6 * See the LICENSE file in the root of this repository for complete details. 7 */ 8 9 #ifndef DEVMGR_SERVICE_START_H 10 #define DEVMGR_SERVICE_START_H 11 12 enum { 13 DEV_MGR_SLOW_LOAD = 0, 14 DEV_MGR_QUICK_LOAD, 15 }; 16 17 int DeviceManagerStart(void); 18 int DeviceManagerStartStep2(void); 19 void DeviceManagerSetQuickLoad(int isQuickLoad); 20 int DeviceManagerIsQuickLoad(void); 21 22 #endif /* DEVMGR_SERVICE_START_H */ 23