mirror of
https://github.com/weiju/amiga-stuff
synced 2025-11-20 00:09:58 +00:00
10 lines
204 B
C
10 lines
204 B
C
#pragma once
|
|
#ifndef __MUI_UTIL_H__
|
|
#define __MUI_UTIL_H__
|
|
|
|
#ifndef MAKE_ID
|
|
#define MAKE_ID(a,b,c,d) ((ULONG) (a)<<24 | (ULONG) (b)<<16 | (ULONG) (c)<<8 | (ULONG) (d))
|
|
#endif
|
|
|
|
#endif /* __MUI_UTIL_H__ */
|