Function prototype to support 64-bit

Missing a prototype can cause a problem if we are 64-bit and the
function is returning a pointer.  Add a prototype to stop the return
value from being corrupted.
This commit is contained in:
dkulwin 2015-11-04 18:49:47 -06:00
parent 3bbefb6078
commit 3bc857c8fe
1 changed files with 2 additions and 1 deletions

View File

@ -86,6 +86,7 @@ extern u_int session_id2_len;
#ifdef WIN32_FIXME
extern char HomeDirLsaW[MAX_PATH];
wchar_t *GetHomeDir(char *userName);
#endif