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.
29 lines
582 B
29 lines
582 B
// Copyright (c) 1997-1999 Microsoft Corporation
|
|
//
|
|
// Post-operation shortcut (shell link) code
|
|
//
|
|
// 1 Dec 1999 sburns
|
|
|
|
|
|
|
|
#ifndef SHORTCUT_HPP_INCLUDED
|
|
#define SHORTCUT_HPP_INCLUDED
|
|
|
|
|
|
|
|
// add/remove shortcuts appropriately for a newly-promoted domain controller.
|
|
|
|
void
|
|
PromoteConfigureToolShortcuts(ProgressDialog& dialog);
|
|
|
|
|
|
|
|
// add/remove shortcuts appropriately for a newly-demoted domain controller.
|
|
// (the inverse of PromoteConfigureToolShortcuts)
|
|
|
|
void
|
|
DemoteConfigureToolShortcuts(ProgressDialog& dialog);
|
|
|
|
|
|
|
|
#endif // SHORTCUT_HPP_INCLUDED
|