45 lines
701 B
C
45 lines
701 B
C
/*++
|
|
|
|
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;
|
|
|