mirror of https://github.com/tongzx/nt5src
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.
44 lines
701 B
44 lines
701 B
/*++
|
|
|
|
Copyright (c) 1995-2001 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
cmdat.c
|
|
|
|
Abstract:
|
|
|
|
This module contains global strings.
|
|
|
|
Author:
|
|
|
|
Paula Tomlinson (paulat) 8-20-1995
|
|
|
|
Environment:
|
|
|
|
User mode only.
|
|
|
|
Revision History:
|
|
|
|
6-Jun-1995 paulat
|
|
|
|
Creation and initial implementation.
|
|
|
|
--*/
|
|
|
|
|
|
//
|
|
// includes
|
|
//
|
|
#include "precomp.h"
|
|
|
|
|
|
//
|
|
// global strings
|
|
//
|
|
WCHAR pszRegPathClass[] = REGSTR_PATH_CLASS_NT;
|
|
WCHAR pszRegPathDeviceClass[] = REGSTR_PATH_DEVICE_CLASSES;
|
|
WCHAR pszRegPathIDConfigDB[] = REGSTR_PATH_IDCONFIGDB;
|
|
WCHAR pszRegKeyKnownDockingStates[] = REGSTR_KEY_KNOWNDOCKINGSTATES;
|
|
WCHAR pszRegValueClass[] = REGSTR_VAL_CLASS;
|
|
|