mirror of https://github.com/tongzx/nt5src
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.
27 lines
705 B
27 lines
705 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1997.
|
|
//
|
|
// File: D I S C O N N E C T . H
|
|
//
|
|
// Contents: Code for disconnect confirmation and SyncMgr sync calls.
|
|
//
|
|
// Notes:
|
|
//
|
|
// Author: jeffspr 11 Mar 1998
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#ifndef _DISCONNECT_H_
|
|
#define _DISCONNECT_H_
|
|
|
|
#include <syncrasp.h> // for SYNCMGRQUERYSHOWSYNCUI
|
|
|
|
VOID PromptForSyncIfNeeded(
|
|
const CONFOLDENTRY& ccfe,
|
|
HWND hwndOwner);
|
|
|
|
#endif // _DISCONNECT_H_
|