hp2FEM  0.1
include/acdp/acdpdefs.h
00001 #ifndef ACDPDEFS_H
00002 #define ACDPDEFS_H
00003 
00004 #if defined(__32BITS__)
00005 //#define huge
00006 #define far
00007 #define near
00008 #endif
00009 
00010 
00011 /* ERROS */
00012 #define WARNING      0
00013 #define COMMON_ERROR 1
00014 #define FATAL_ERROR  2
00015 
00016 #define StrEq(x, y)        (strcmp((x), (y)) == 0)
00017 #define StrNCmp(x, y, tam) (strncmp((x), (y), (n)) == 0)
00018 #define StrCat(x, y)       (strcat((x), (y)))
00019 #define StrCmp(x, y)       (strcmp((x), (y)))
00020 #define StrCpy(x, y)       (strcpy((x), (y)))
00021 #define StrLen(x)          (strlen((x)))
00022 
00023 #define MAX_TAM_NOME 81
00024 
00025 #endif
00026 
 All Classes Files Functions Variables Typedefs Friends Defines