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.
18 lines
383 B
18 lines
383 B
//
|
|
// priv.h for fldrclnr project
|
|
//
|
|
|
|
#ifndef __PRIV_H__
|
|
#define __PRIV_H__
|
|
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
|
|
|
// some useful debug stuff
|
|
#define SZ_DEBUGINI "ccshell.ini"
|
|
#define SZ_DEBUGSECTION "Desktop Cleaning Utility"
|
|
#define SZ_MODULE "fldrclnr"
|
|
#include <debug.h>
|
|
|
|
#include <ccstock.h>
|
|
|
|
#endif // __PRIV_H__
|