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* Licensa de Copia (C) <2022> <Aurora Boreal> *
4* *
5* Este programa e software livre: voce pode redistribuir isto e/ou *
6* modificar isto sobre os termos do GNU Licensa Geral Pública como 12
7* publicado pela Fundacao de Software Livre, tanto a versão 3 da *
8* Licensa, ou (dependendo da sua opcao) qualquer versao posterior. *
9* *
10* Este programa e distribuido na esperanca que isto vai ser util, *
11* mas SEM QUALQUER GARANTIA; sem ate mesmo a implicada garantia de *
12* COMERCIALIZAcaO ou CABIMENTO PARA UM FIM PARTICULAR. Veja a *
13* Licensa Geral Publica para mais detalhes. *
14* *
15* Você deve ter recebido uma cópia da LICENSA GERAL PUBLICA e a GNU *
16* Licensa Publica Menor junto com este programa *
17* Se não, veja <http://www.gnu.org/licenses/>. *
18* *
19* Suporte: sourceforge.net github.com *
20* *
21* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
22
23* Pereira: arsoftware25@gmail.com ricardo@arsoftware.net.br *
24* Koci: arsoftware10@gmail.com amanda@arsoftware.net. br *
25
26 pereira1001@users.sourceforge.net
27 */
28#ifndef BE_WIN64_SUPPORT__
29#define BE_WIN64_SUPPORT__
30 #ifdef _M_X64
31 #define __INT32_OR_INT64 __int64
32 #ifdef __GNUC__
33 //#warning size of __INT32_OR_INT64 is 8
34 #else
35 //#pragma message ( "size of __INT32_OR_INT64 is 8" )
36 #endif
37 #else
38
39 #define __INT32_OR_INT64 int
40 #ifdef __GNUC__
41 //#warning size of __INT32_OR_INT64 is 4
42 #else
43 //#pragma message ( "size of __INT32_OR_INT64 is 4" )
44 #endif
45 #endif
46#endif