Commit ab86f159 by kelly.leahy

Fix issue #79 - git_lasterror() isn't appearing in git2.dll in windows.

The GIT_EXPORT macro is used to declare a function to be externally
accessible to other libraries.  This commit uses GIT_EXPORT to declare
the git_lasterror() function as externally exported.  I verified with
depends.exe that the function is available to external callers (i.e.
in the exports table of the PE file).
parent 5711ca93
......@@ -185,6 +185,8 @@ typedef struct {
GIT_EXTERN(void) git_strarray_free(git_strarray *array);
GIT_EXTERN(const char*) git_lasterror(void);
/** @} */
GIT_END_DECL
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment