29 lines
534 B
C
29 lines
534 B
C
/**
|
|
* Copyright (C) 2008 Happy Fish / YuQing
|
|
*
|
|
* FastDFS may be copied only under the terms of the GNU General
|
|
* Public License V3, which may be found in the FastDFS source kit.
|
|
* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
|
|
**/
|
|
|
|
//storage_param_getter.h
|
|
|
|
#ifndef _STORAGE_PARAM_GETTER_H_
|
|
#define _STORAGE_PARAM_GETTER_H_
|
|
|
|
#include "tracker_types.h"
|
|
#include "tracker_client_thread.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int storage_get_params_from_tracker();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|