Fundamentos:Solucións:Reversi:reversi.h: Diferenzas entre revisións
Saltar á navegación
Saltar á procura
(Nova páxina: "Podes [http://web.iesrodeira.com/Descargas/Exercicios/Reversi/reversi.h Descargar] o ficheiro <c> #ifndef __REVERSIH__ #define __REVERSIH__ #ifdef __WINDOWS__ #define EXPORT _...") |
Sen resumo de edición |
||
Liña 1: | Liña 1: | ||
Podes [http://web.iesrodeira.com/Descargas/Exercicios/Reversi/reversi.h Descargar] o ficheiro |
Podes [http://web.iesrodeira.com/Descargas/Exercicios/Reversi/reversi.h Descargar] o ficheiro |
||
<source lang='C'> |
|||
<c> |
|||
#ifndef __REVERSIH__ |
#ifndef __REVERSIH__ |
||
#define __REVERSIH__ |
#define __REVERSIH__ |
||
Liña 28: | Liña 28: | ||
#endif |
#endif |
||
</ |
</source> |
Revisión actual feita o 26 de xuño de 2014 ás 11:23
Podes Descargar o ficheiro
#ifndef __REVERSIH__
#define __REVERSIH__
#ifdef __WINDOWS__
#define EXPORT __declspec (dllexport)
#else
#define EXPORT
#endif
// Direccions
#define ARRESQ 0
#define ARR 1
#define ARRDER 2
#define ABAESQ 3
#define ABA 4
#define ABADER 5
#define ESQ 6
#define DER 7
// Pezas
#define VACIO 0
#define XOG1 1
#define XOG2 2
#endif