mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
4d35077fe3
* added some list views git-svn-id: svn://svn.code.sf.net/p/processhacker/code@2313 21ef857c-d57f-4fe0-8362-d861dc6d29cd
29 lines
492 B
C
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 |