34 lines
455 B
C
34 lines
455 B
C
|
|
||
|
/*++
|
||
|
|
||
|
Copyright (c) 1999-2000 Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
setup.h
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
This file define function used only in the setup/reflector thread
|
||
|
|
||
|
Author:
|
||
|
|
||
|
ATM Shafiqul Khalid (askhalid) 16-Feb-2000
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
--*/
|
||
|
|
||
|
#ifndef __SETUP_H__
|
||
|
#define __SETUP_H__
|
||
|
|
||
|
|
||
|
|
||
|
#define TEST_NODE_NAME L"TEST"
|
||
|
#define VALUE_KEY_UPDATE_TIME_DIFF 10 // minimum difference in sec to Keyupdate and reflector thread scan
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
#endif //__SETUP_H__
|