-
Notifications
You must be signed in to change notification settings - Fork 0
/
Reports.h
executable file
·89 lines (68 loc) · 2.25 KB
/
Reports.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#ifndef REPORTS_H
#define REPORTS_H
#include <stdio.h>
#include <string.h>
#include "event.h"
#include "reportStruct.h"
#define NUM_REPORTS 350
ReportInfo CommonReports[NUM_REPORTS];
void buildReportList();
int reportA(EventInfo *pEvent);
// Station Reports
int StationActivity(EventInfo *pEvent);
int StationConfiguration(EventInfo *pEvent);
int StationDAC(EventInfo *pEvent);
int StationExceptions(EventInfo *pEvent);
int StationInformation(EventInfo *pEvent);
int StationList(EventInfo *pEvent);
int StationORI(EventInfo *pEvent);
int StationStatus(EventInfo *pEvent);
int StationTotals(EventInfo *pEvent);
// User Reports
int UserConfiguration(EventInfo *pEvent);
int UserException(EventInfo *pEvent);
int UserStatus(EventInfo *pEvent);
// Message Key
int MessageConfiguration(EventInfo *pEvent);
// Computer
int ComputerConfiguration(EventInfo *pEvent);
int ComputerStatus(EventInfo *pEvent);
int ComputerExceptions(EventInfo *pEvent);
// Performance Monitors
int PerformanceCPU(EventInfo *pEvent);
int PerformanceMessageQueue(EventInfo *pEvent);
int PerformanceMessageThroughput(EventInfo *pEvent);
int PerformanceNetworkUsage(EventInfo *pEvent);
// Desktop
int DesktopAgencyConfiguration(EventInfo *pEvent);
int DesktopLicenseConfiguration(EventInfo *pEvent);
int DesktopLicenseExceptions(EventInfo *pEvent);
// Set On Monitor
int SetOnStationMonitor(EventInfo *pEvent);
int SetOnFLOG_Monitor(EventInfo *pEvent);
int SetOnFLOG_View(EventInfo *pEvent);
// Trace
int TraceSeqNum(EventInfo *pEvent);
int TraceTime(EventInfo *pEvent);
int TraceSpecial(EventInfo *pEvent);
int TraceMRI(EventInfo *pEvent);
int TraceCommandConfiguration(EventInfo *pEvent);
int TraceNetworkEvents(EventInfo *pEvent);
int TraceError(EventInfo *pEvent);
// Find
int FindSeqNum(EventInfo *pEvent);
int FindTime(EventInfo *pEvent);
int FindSpecial(EventInfo *pEvent);
int FindMRI(EventInfo *pEvent);
// Role
int RoleConfiguration(EventInfo *pEvent);
// File
int FileExceptions(EventInfo *pEvent);
// Timer Commands
int TimerCommandsDisplay(EventInfo *pEvent);
// List
int ListMail(EventInfo *pEvent);
// Message History Statistics
int MHS_Hourly(EventInfo *pEvent);
int MHS_Weekly(EventInfo *pEvent);
#endif