Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
Loading...
Searching...
No Matches
win64.h
Go to the documentation of this file.
1
2/*
3 <C/C++ source code of the support dlls>
4 Copyright (C) <2020> <BinaryWork Corp.>
5
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU GENERAL PUBLIC LICENSE
17 and GNU LESSER GENERAL PUBLIC LICENSE along with this program.
18 If not, see <http://www.gnu.org/licenses/>.
19
20 support: http://nomade.sourceforge.net
21
22 direct programmers e-mails:
23 Ricardo: arsoftware25@gmail.com
24 Amanda : arsoftware10@gmail.com
25
26 immediate contact(for a very fast answer) WhatsApp
27 (+55)41 9627 1708 - it is always on
28*/
29
30#ifndef BE_WIN64_SUPPORT__
31#define BE_WIN64_SUPPORT__
32 #ifdef _M_IA64
33 #error This source was not tested on Itanium
34 #endif
35
36 #ifdef _M_X64
37 #define __INT32_OR_INT64 __int64
38 #ifdef __GNUC__
39 //#warning size of __INT32_OR_INT64 is 8
40 #else
41 //#pragma message ( "size of __INT32_OR_INT64 is 8" )
42 #endif
43 #else
44
45 #define __INT32_OR_INT64 int
46 #ifdef __GNUC__
47 //#warning size of __INT32_OR_INT64 is 4
48 #else
49 //#pragma message ( "size of __INT32_OR_INT64 is 4" )
50 #endif
51 #endif
52#endif