#ifndef _MAIN_HPP_
#define _MAIN_HPP_
#include <common/windows.hpp>
#include <common/types.hpp>
#include <common/owner.hpp>

#define WM_REACTIVATE WM_USER+1

class Main
{
public:
  static HINSTANCE processInstance(void);      
  static HINSTANCE smhPrevInstance;
  static int smnCmdShow;
  static OwnerDraw smhBitmap;
  static HINSTANCE smhInstance;
private:
};

inline
HINSTANCE Main::processInstance(void)
{
  return smhInstance;
}
#endif



