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.
72 lines
1.9 KiB
72 lines
1.9 KiB
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright Microsoft Corporation
|
|
//
|
|
// Module Name:
|
|
//
|
|
// aaaahndl.c
|
|
//
|
|
// Abstract:
|
|
//
|
|
// Handlers for aaaa commands
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
#include "stdafx.h"
|
|
|
|
#include "strdefs.h"
|
|
#include "rmstring.h"
|
|
#include "aaaamon.h"
|
|
#include "aaaahndl.h"
|
|
#include "aaaaconfig.h"
|
|
#include "iasdefs.h"
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// AaaaDumpScriptHeader
|
|
//
|
|
// Routine Description:
|
|
//
|
|
// Dumps the header of a script to the given file or to the
|
|
// screen if the file is NULL.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
DWORD AaaaDumpScriptHeader(IN HANDLE hFile)
|
|
{
|
|
DisplayMessage(g_hModule, MSG_AAAA_SCRIPTHEADER);
|
|
return NO_ERROR;
|
|
}
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// AaaaDumpScriptFooter
|
|
//
|
|
// Routine Description:
|
|
//
|
|
// Dumps the header of a script to the given file or to the
|
|
// screen if the file is NULL.
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
DWORD AaaaDumpScriptFooter(IN HANDLE hFile)
|
|
{
|
|
DisplayMessage(g_hModule, MSG_AAAA_SCRIPTFOOTER);
|
|
return NO_ERROR;
|
|
}
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// AaaaDump
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
DWORD
|
|
WINAPI
|
|
AaaaDump(
|
|
IN LPCWSTR pwszRouter,
|
|
IN OUT LPWSTR *ppwcArguments,
|
|
IN DWORD dwArgCount,
|
|
IN LPCVOID pvData
|
|
)
|
|
{
|
|
AaaaDumpScriptHeader( NULL );
|
|
AaaaConfigDumpConfig(CONFIG);
|
|
DisplayMessageT(MSG_NEWLINE);
|
|
AaaaDumpScriptFooter( NULL );
|
|
return NO_ERROR;
|
|
}
|