windows-nt/Source/XPSP1/NT/sdktools/cntrtext/unlodctr/unlodctr.c
2020-09-26 16:20:57 +08:00

73 lines
1.2 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright (c) 1991-1993 Microsoft Corporation
Module Name:
unlodctr.c
Abstract:
Program to remove the counter names belonging to the driver specified
in the command line and update the registry accordingly
Author:
Bob Watson (a-robw) 12 Feb 93
Revision History:
--*/
#define UNICODE 1
#define _UNICODE 1
//
// Windows Include files
//
#include <windows.h>
#include <tchar.h>
#include <loadperf.h>
int
__cdecl main(
int argc,
char *argv[]
)
/*++
main
entry point to Counter Name Unloader
Arguments
argc
# of command line arguments present
argv
array of pointers to command line strings
(note that these are obtained from the GetCommandLine function in
order to work with both UNICODE and ANSI strings.)
ReturnValue
0 (ERROR_SUCCESS) if command was processed
Non-Zero if command error was detected.
--*/
{
LPTSTR lpCommandLine;
UNREFERENCED_PARAMETER (argc);
UNREFERENCED_PARAMETER (argv);
lpCommandLine = GetCommandLine(); // get command line
return (int)UnloadPerfCounterTextStrings (
lpCommandLine,
FALSE); // show text strings to console
}