Einzelnen Beitrag anzeigen

sunboy

Registriert seit: 1. Aug 2004
5 Beiträge
 
#1

welcher codetyp ist das?

  Alt 3. Aug 2004, 19:02
was für ein codetyp ist das?
das soll son progi für bilder sein. (ein teil.)
doch weiß ich nicht, welcher codetyp es ist und es steht nichts dabei.
was denkt ihr?

Code:
/*********************************************************************
/* base.h
/*********************************************************************
*/

#ifndef _BASE_H_
#define _BASE_H_

#ifndef BOOL
#define BOOL int
#endif

#ifndef TRUE
#define TRUE 1
#define FALSE 0
#endif

#ifndef uchar
#define uchar unsigned char
#endif

#ifndef schar
#define schar signed char
#endif

#ifndef uint
#define uint unsigned int
#endif

#ifndef ushort
#define ushort unsigned short
#endif

#ifndef ulong
#define ulong unsigned long
#endif

#define max(a,b)   ((a) > (b) ? (a) : (b))
#define min(a,b)   ((a) < (b) ? (a) : (b))
#define max3(a,b,c)   ((a) > (b) ? max((a),(c)) : max((b),(c)))
#define min3(a,b,c)   ((a) < (b) ? min((a),(c)) : min((b),(c)))

#endif
[edit=sakura] [code]Tags Mfg, sakura[/edit]
  Mit Zitat antworten Zitat