Initial commit

This commit is contained in:
Cesar Gimenes
2021-09-18 14:10:47 -03:00
parent 46f2228e15
commit e2607a94c0
131 changed files with 5312 additions and 0 deletions

31
nkosrc4/Neko98/DesktopHack.h Executable file
View File

@@ -0,0 +1,31 @@
// DesktopHack.h: interface for the CDesktopHack class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_DESKTOPHACK_H__A69EBAA1_385D_11D2_9FF9_00001C192944__INCLUDED_)
#define AFX_DESKTOPHACK_H__A69EBAA1_385D_11D2_9FF9_00001C192944__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
class CDesktopHack
{
public:
void GetDesktopRect( RECT& rcDesktop );
void FindDesktopHandle();
CDesktopHack();
virtual ~CDesktopHack();
protected:
HWND m_hWndDesktop;
BOOL m_fActiveDesktop; //the desktop is an active (web) desktop
BOOL m_fNoChicagoDesktop; //the desktop is not a windows 95/nt4 desktop
};
#endif // !defined(AFX_DESKTOPHACK_H__A69EBAA1_385D_11D2_9FF9_00001C192944__INCLUDED_)