10 lines
137 B
C
10 lines
137 B
C
#include <windows.h>
|
|
#include <nsis/pluginapi.h>
|
|
#include "User.h"
|
|
|
|
PLUGIN_METHOD(IsAdmin) {
|
|
PLUGIN_INIT();
|
|
|
|
pushint(IsUserAdmin());
|
|
}
|