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.
18 lines
630 B
18 lines
630 B
|
|
#include "stdafx.h"
|
|
#include "trapreg.h"
|
|
#include "lcsource.h"
|
|
#include "lcevents.h"
|
|
|
|
CTrapReg g_reg;
|
|
|
|
// The default value for the comma separator is a comma. This is replaced by the
|
|
// thousands separator generated by GetNumberFormat.
|
|
TCHAR g_chThousandSep = _T(',');
|
|
|
|
// An array of boolean value to indicate whether the columns of the source and events list controls
|
|
// should be sorted in ascending or descending order.
|
|
BOOL g_abLcSourceSortAscending[ICOL_LcSource_MAX] = {TRUE, TRUE, TRUE, TRUE};
|
|
BOOL g_abLcEventsSortAscending[ICOL_LcEvents_MAX] = {TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE};
|
|
|
|
|