X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fadt%2Ffourcc.h;h=cf2f3de1997890ca763e8ac1f09962c67bc739b6;hb=34e3b8d50bce639e760da7233524a4db85c80290;hp=3d04f7a6e1ab9abf9e6ab6ccfa61c640a28c7b45;hpb=33c204f3f48520caec1c852cbbc5c8e85ebda22f;p=libfirm diff --git a/ir/adt/fourcc.h b/ir/adt/fourcc.h index 3d04f7a6e..cf2f3de19 100644 --- a/ir/adt/fourcc.h +++ b/ir/adt/fourcc.h @@ -1,17 +1,17 @@ /* - * Project: libFIRM - * File name: ir/adt/fourcc.h - * Purpose: define the famous infame FOURCC macro. - * Author: - * Modified by: - * Created: 02.01.2004 - * CVS-ID: $Id$ - * Copyright: (C) 2004 University of Karlsruhe - * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. + * This file is part of libFirm. + * Copyright (C) 2012 University of Karlsruhe. */ -#ifndef _FOURCC_H -#define _FOURCC_H +/** + * @file + * @brief Define the famous infame FOURCC macro. + * @date 02.01.2004 + */ +#ifndef FIRM_ADT_FOURCC_H +#define FIRM_ADT_FOURCC_H + +/** define a readable fourcc code */ #define FOURCC(a,b,c,d) ((a) | ((b) << 8) | ((c) << 16) | ((d) << 24)) -#endif /* _FOURCC_H */ +#endif