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.
34 lines
550 B
34 lines
550 B
//
|
|
// proj.h: Main header
|
|
//
|
|
//
|
|
|
|
|
|
#ifndef __PROJ_H__
|
|
#define __PROJ_H__
|
|
|
|
#define STRICT
|
|
|
|
#if defined(WINNT) || defined(WINNT_ENV)
|
|
|
|
//
|
|
// NT uses DBG=1 for its debug builds, but the Win95 shell uses
|
|
// DEBUG. Do the appropriate mapping here.
|
|
//
|
|
#if DBG
|
|
#define DEBUG 1
|
|
#endif
|
|
|
|
#endif // WINNT
|
|
|
|
#include <windows.h>
|
|
#include <shlwapi.h>
|
|
#include <commctrl.h>
|
|
#include <shlobj.h>
|
|
#include <port32.h>
|
|
#include <ccstock.h>
|
|
#include "..\inc\debug.h"
|
|
|
|
#include <shlobj.h> // for _ILNext
|
|
|
|
#endif // __PROJ_H__
|