Source code of Windows XP (NT5)
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.
|
|
/****************************************************************************
Copyright (c) Microsoft Corporation 1998 All rights reserved
File: CALLBACK.H
***************************************************************************/
#ifndef _CALLBACK_H_
#define _CALLBACK_H_
extern DWORD g_NeedDlg; extern HWND g_hMainWindow;
HRESULT BeginProcess( HWND hParent );
NTSTATUS ConvTestErrorFn( IN PVOID Context, IN NTSTATUS Status, IN IMIRROR_TODO IMirrorFunctionId );
NTSTATUS ConvTestNowDoingFn( IN PVOID Context, IN IMIRROR_TODO Function, IN PWSTR String );
NTSTATUS ConvTestGetServerFn( IN PVOID Context, OUT PWSTR Server, IN OUT PULONG Length );
NTSTATUS ConvTestGetMirrorDirFn( IN PVOID Context, OUT PWSTR Mirror, IN OUT PULONG Length );
NTSTATUS ConvTestFileCreateFn( IN PVOID Context, IN PWSTR FileName, IN ULONG FileAction, IN ULONG Status );
NTSTATUS ConvTestReinitFn( IN PVOID Context );
NTSTATUS ConvTestGetSetupFn( IN PVOID Context, IN PWSTR Server, OUT PWSTR SetupPath, IN OUT PULONG Length );
NTSTATUS ConvTestSetSystemFn( IN PVOID Context, IN PWSTR SystemPath, IN ULONG Length );
NTSTATUS ConvAddToDoItemFn( IN PVOID Context, IN IMIRROR_TODO Function, IN PWSTR String, IN ULONG Length );
NTSTATUS ConvRemoveToDoItemFn( IN PVOID Context, IN IMIRROR_TODO Function, IN PWSTR String, IN ULONG Length );
NTSTATUS ConvRebootFn( IN PVOID Context );
BOOL DoShutdown( IN BOOL Restart );
#endif // _CALLBACK_H_
|