2007-10-26 22:34:42 +00:00
|
|
|
/*
|
|
|
|
* 3D Text OpenGL Screensaver (3dtext.h)
|
|
|
|
*
|
|
|
|
* Copyright 2007 Marc Piulachs
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2009-10-27 10:34:16 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2007-10-26 22:34:42 +00:00
|
|
|
*/
|
|
|
|
|
2014-02-03 16:13:37 +00:00
|
|
|
#ifndef _3DTEXT_H_
|
|
|
|
#define _3DTEXT_H_
|
|
|
|
|
2011-07-26 22:09:21 +00:00
|
|
|
#include <tchar.h>
|
2014-01-07 17:11:52 +00:00
|
|
|
#include <windef.h>
|
2011-07-26 22:09:21 +00:00
|
|
|
|
2009-10-18 18:52:56 +00:00
|
|
|
extern TCHAR m_Text[MAX_PATH];
|
2007-10-26 22:34:42 +00:00
|
|
|
|
2007-12-25 15:45:53 +00:00
|
|
|
VOID LoadSettings(VOID);
|
|
|
|
VOID SaveSettings(VOID);
|
2014-02-03 16:13:37 +00:00
|
|
|
|
|
|
|
#endif /* _3DTEXT_H_ */
|