source: cpp/common/nonstd_dir.h @ 138

Last change on this file since 138 was 122, checked in by sz, 10 years ago

(c)opyright information added

  • Property svn:eol-style set to native
File size: 435 bytes
Line 
1// This file is a part of the Framsticks GDK.
2// Copyright (C) 2002-2014  Maciej Komosinski and Szymon Ulatowski.  See LICENSE.txt for details.
3// Refer to http://www.framsticks.com/ for further information.
4
5#ifndef _NONSTD_DIR_H_
6#define _NONSTD_DIR_H_
7
8#if defined _WIN32 && !defined SHP && !defined __BORLANDC__
9#include "dirent_windows.h"
10#else
11#ifdef SHP
12#include "dirent_bada.h"
13#else
14#include <dirent.h>
15#endif
16#endif
17
18#endif
19
Note: See TracBrowser for help on using the repository browser.