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) 1998 - 1999 Microsoft Corporation
/***********************************************************************
* * QPROCESS.H * This module contains typedefs and defines required for * the QPROCESS utility. * * *************************************************************************/
#include <utildll.h>
/*
* Header and format string definitions. */ // L" USERNAME SESSIONNAME ID STATE PID IMAGE\n"
// 12345678901234567890 1234567890123456 1234 1234567890 12345 123456789012345
//#define FORMAT \ //L"%-20s %-16s %4u %-10s %5u %0.15s\n"
#define FORMAT \
"%-20s %-16s %4u %5u %0.15s\n"
/*
* General application definitions. */ #define SUCCESS 0
#define FAILURE 1
#define MAX_IDS_LEN 256 // maximum length that the input parm can be
#define MAXNAME 18 // Max allowed for printing.
/*
* Resource string IDs */ #define IDS_ERROR_MALLOC 100
#define IDS_ERROR_INVALID_PARAMETERS 101
#define IDS_ERROR_QUERY_INFORMATION 102
#define IDS_ERROR_PROCESS_NOT_FOUND 103
#define IDS_ERROR_ENUMERATE_PROCESSES 104
#define IDS_ERROR_SERVER 105
#define IDS_HELP_USAGE1 106
#define IDS_HELP_USAGE2 107
#define IDS_HELP_USAGE3 108
#define IDS_HELP_USAGE4 109
#define IDS_HELP_USAGE5 110
#define IDS_HELP_USAGE6 111
#define IDS_HELP_USAGE7 112
#define IDS_HELP_USAGE8 113
#define IDS_HELP_USAGE9 114
#define IDS_HELP_USAGE10 115
#define IDS_HEADER 116
#define IDS_ERROR_NOT_TS 117
#define IDS_HELP_USAGE40 118
|