Welcome to mirror list, hosted at ThFree Co, Russian Federation.

raros.hpp « Original « Rar29 « Compress « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e6867981c6f34e32358c42c6e26248e8bb839341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef _RAR_RAROS_
#define _RAR_RAROS_

#ifdef __EMX__
  #define _EMX
#endif

#ifdef __DJGPP__
  #define _DJGPP
  #define _EMX
#endif

#if defined(__WIN32__) || defined(_WIN32)
  #define _WIN_32
#endif

#ifdef _WIN32_WCE
  #define _WIN_32
  #define _WIN_CE
  #ifdef WM_FILECHANGEINFO
    #define PC2002
  #else
    #undef PC2002
  #endif
#endif

#ifdef __BEOS__
  #define _UNIX
  #define _BEOS
#endif

#ifdef __APPLE__
  #define _UNIX
  #define _APPLE
#endif

#if !defined(_EMX) && !defined(_WIN_32) && !defined(_BEOS) && !defined(_APPLE)
  #define _UNIX
#endif

#endif