18 lines
409 B
Plaintext
18 lines
409 B
Plaintext
|
|
/*
|
|
* Registry key definition
|
|
*
|
|
* For use with profile.c/profile.h
|
|
*
|
|
*/
|
|
|
|
#ifdef _WIN32
|
|
// The key originally ended in "\".
|
|
// This caused W95 to be able to write to but not read from the registry
|
|
// back from the registry.
|
|
#define KEYNAMEA "Software\\Microsoft\\Sdkdiff"
|
|
#define KEYNAME TEXT("Software\\Microsoft\\Sdkdiff")
|
|
#define KEYNAMEW KEYNAME
|
|
#define ROOTKEY HKEY_CURRENT_USER
|
|
#endif
|