Files
itgmania212121/stepmania/src/archutils/Win32/AppInstance.h
T
2003-11-14 17:17:36 +00:00

24 lines
364 B
C++

#ifndef APP_INSTANCE_H
#define APP_INSTANCE_H
#include "windows.h"
/* Win32 only: get an HINSTANCE; used for starting dialog boxes. */
class AppInstance
{
HINSTANCE h;
public:
AppInstance();
~AppInstance();
HINSTANCE Get() const { return h; }
};
#endif
/*
* Copyright (c) 2002 by the person(s) listed below. All rights reserved.
*
* Glenn Maynard
*/