/** * 获取Dll加载路径和目录 * 支持平台:Windows * * @param dllPath 用户config配置的加载dll路径,支持绝对路径和相对路径 * @param currentDirection 当前程序运行exe根目录 * @param dllName dll名称,现有:NmeoSDK.dll、SlaveNemoSDK.dll * @returns */ declare const getDllPath: (dllPath: string, currentDirection: string, dllName?: string) => { sdkDllPath: string; sdkProjectPath: string; }; export declare const SDK_LOG_NAME = "js_c_wrapper.log"; export declare const SDK_SLAVE_LOG_NAME = "js_c_slave_wrapper.log"; export declare const SDK_SLAVE_NEMO_NAME = "xyslave.log"; /** * 获取日志路径 * 支持WindowsXP,Windows 7+,Mac,Linux * windowsXP: C:\Documents and Settings\user\Application Data * Windows 7+: C:\Users\user\AppData\Roaming * Mac: /Users/user/Library/Application Support/xylink-electron * Linux: /home/user/.local/share * * @param configLogPath 用户配置的log路径,支持绝对和相对路径 * @param logName 日志名称,现在默认:js_c_wrapper.log、js_c_slave_wrapper.log * @returns */ declare const getLogPath: (configLogPath: string, logName: string) => { sdkLogPath: string; sdkLogDir: string; sdkSlaveLogPath: string; }; export { getDllPath, getLogPath };