Leaked source code of windows server 2003
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
332 B

#ifndef _UTILS_H_
#define _UTILS_H_
// macro definitions
#define MAX_URL INTERNET_MAX_URL_LENGTH
#ifndef ISNULL
#define ISNULL(psz) (*(psz) == TEXT('\0'))
#endif
#ifndef ISNONNULL
#define ISNONNULL(psz) (*(psz) != TEXT('\0'))
#endif
// prototype declarations
void ShortPathName(LPTSTR pszFileName);
#endif