Atrinik Client 2.5
Defines | Typedefs | Enumerations
include/global.h File Reference
#include <SDL.h>
#include <SDL_main.h>
#include <SDL_image.h>
#include <SDL_ttf.h>
#include <curl/curl.h>
#include <zlib.h>
#include <math.h>
#include <config.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <signal.h>
#include <porting.h>
#include <version.h>
#include <item.h>
#include <text.h>
#include <curl.h>
#include <book.h>
#include <commands.h>
#include <main.h>
#include <client.h>
#include <effects.h>
#include <sprite.h>
#include <widget.h>
#include <textwin.h>
#include <player.h>
#include <party.h>
#include <misc.h>
#include <event.h>
#include <ignore.h>
#include <sound.h>
#include <map.h>
#include <scripts.h>
#include <inventory.h>
#include <menu.h>
#include <list.h>
#include <button.h>
#include <popup.h>
#include <server_settings.h>
#include <server_files.h>
#include <image.h>
#include <settings.h>
#include <keybind.h>
#include <binreloc.h>
#include <sha1.h>
#include <progress.h>
#include <updater.h>
#include <proto.h>

Go to the source code of this file.

Defines

#define __attribute__(x)
#define MIN(x, y)   ((x) < (y) ? (x) : (y))
#define MAX(x, y)   ((x) > (y) ? (x) : (y))
#define FABS(x)   ((x) < 0 ? -(x) : (x))

Typedefs

typedef unsigned int uint32
typedef signed int sint32
typedef unsigned short uint16
typedef signed short sint16
typedef unsigned char uint8
typedef signed char sint8
typedef enum LogLevel LogLevel

Enumerations

enum  LogLevel { llevError, llevBug, llevDebug, llevInfo }

Detailed Description

The main include file, included by most C files.

Definition in file global.h.


Typedef Documentation

typedef enum LogLevel LogLevel

The log levels.

typedef signed short sint16

Signed 16-bit integer.

Definition at line 40 of file global.h.

typedef signed int sint32

Signed 32-bit integer.

Definition at line 36 of file global.h.

typedef signed char sint8

Signed 8-bit integer.

Definition at line 44 of file global.h.

typedef unsigned short uint16

Unsigned 16-bit integer.

Definition at line 38 of file global.h.

typedef unsigned int uint32

Unsigned 32-bit integer.

Definition at line 34 of file global.h.

typedef unsigned char uint8

Unsigned 8-bit integer.

Definition at line 42 of file global.h.


Enumeration Type Documentation

enum LogLevel

The log levels.

Enumerator:
llevError 

An irrecoverable error.

llevBug 

Bug report.

llevDebug 

Debugging message.

llevInfo 

Information.

Definition at line 161 of file global.h.