This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
fte/c_desktop.h

29 lines
533 B
C
Raw Permalink Normal View History

/* c_desktop.h
*
* Copyright (c) 1994-1996, Marko Macek
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
*
*/
#ifndef __DESKTOP_H__
#define __DESKTOP_H__
#ifdef CONFIG_DESKTOP
#ifdef UNIX
# define DESKTOP_NAME ".fte-desktop"
#else
# define DESKTOP_NAME "fte.dsk"
#endif
extern char DesktopFileName[256];
int SaveDesktop(char *FileName);
int LoadDesktop(char *FileName);
#endif
#endif