Files
mirror-processhacker/2.x/trunk/ProcessHacker/include/phbase.h
T
wj32 4d35077fe3 * fixed ugly tab font
* added some list views

git-svn-id: svn://svn.code.sf.net/p/processhacker/code@2313 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2009-10-25 10:24:55 +00:00

29 lines
492 B
C

#ifndef PHBASE_H
#define PHBASE_H
#ifndef UNICODE
#define UNICODE
#endif
#define WIN32_NO_STATUS
#include <windows.h>
#undef WIN32_NO_STATUS
#include <ntstatus.h>
#include <ntimport.h>
// We don't care about "deprecation".
#pragma warning(disable: 4996)
#define PH_APP_NAME (L"Process Hacker")
#ifndef MAIN_PRIVATE
extern HFONT PhApplicationFont;
extern HANDLE PhHeapHandle;
extern HINSTANCE PhInstanceHandle;
extern PWSTR PhWindowClassName;
#endif
#endif