1
0
forked from 0ad/0ad
0ad/source/lib/sysdep/win/wdll_ver.h

18 lines
625 B
C
Raw Normal View History

#ifndef WDETECT_H__
#define WDETECT_H__
// note: this module is not re-entrant or thread-safe!
// set output buffer into which DLL names and their versions will be written.
extern void dll_list_init(char* buf, size_t chars);
// read DLL file version and append that and its name to the list.
// return 0 on success or a negative error code.
//
// name should preferably be the complete path to DLL, to make sure
// we don't inadvertently load another one on the library search path.
// we add the .dll extension if necessary.
extern LibError dll_list_add(const char* name);
#endif // #ifndef WDETECT_H__