Conf_API.h 292 B

1234567891011
  1. #ifndef _CONF_API_H_
  2. #define _CONF_API_H_
  3. #ifdef CONFXMLPARSE_EXPORTS
  4. #define CONFXML_API extern "C" __declspec(dllexport)
  5. #else
  6. #define CONFXML_API extern "C" __declspec(dllimport)
  7. #endif
  8. CONFXML_API wchar_t* GetValueByKeyFromFile(const wchar_t* strConfXML, const wchar_t* strKey);
  9. #endif