You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
269 B
14 lines
269 B
#pragma once
|
|
|
|
//
|
|
// These are the supported types
|
|
//
|
|
enum ObjectType
|
|
{
|
|
OT_User = 0,
|
|
OT_Computer,
|
|
OT_Group,
|
|
OT_GroupSID
|
|
};
|
|
|
|
bool ObjectPicker( HWND hwndParent, ObjectType oType, PTCHAR szObjectName, ULONG uBufSize, PTCHAR szTargetName = NULL );
|