diff --git a/Contrib/UserInfo/UserInfo.c b/Contrib/UserInfo/UserInfo.c index 6855ac5e..229a342e 100644 --- a/Contrib/UserInfo/UserInfo.c +++ b/Contrib/UserInfo/UserInfo.c @@ -2,7 +2,7 @@ #include "..\exdll\exdll.h" void __declspec(dllexport) GetName(HWND hwndParent, int string_size, - char *variables, stack_t **stacktop) + char *variables, stack_t **stacktop) { EXDLL_INIT(); @@ -17,8 +17,8 @@ void __declspec(dllexport) GetName(HWND hwndParent, int string_size, } } -void __declspec(dllexport) GetGroup(HWND hwndParent, int string_size, - char *variables, stack_t **stacktop) +void __declspec(dllexport) GetAccountType(HWND hwndParent, int string_size, + char *variables, stack_t **stacktop) { EXDLL_INIT(); diff --git a/Contrib/UserInfo/UserInfo.nsi b/Contrib/UserInfo/UserInfo.nsi index c5ae5fbd..729b4361 100644 --- a/Contrib/UserInfo/UserInfo.nsi +++ b/Contrib/UserInfo/UserInfo.nsi @@ -4,7 +4,7 @@ OutFile UserInfo.exe Section UserInfo::GetName Pop $0 - UserInfo::GetGroup + UserInfo::GetAccountType Pop $1 MessageBox MB_OK 'User "$0" in group "$1"' SectionEnd \ No newline at end of file diff --git a/Plugins/UserInfo.dll b/Plugins/UserInfo.dll index 6548fd57..e1c16a0d 100644 Binary files a/Plugins/UserInfo.dll and b/Plugins/UserInfo.dll differ