ultimatepp/uppsrc2/coff/uld/uld.h
cxl c863f38e22 coff moved to uppsrc2
git-svn-id: svn://ultimatepp.org/upp/trunk@7711 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2014-09-21 15:46:17 +00:00

14 lines
383 B
C++

#ifndef __uld_uld__
#define __uld_uld__
#include <coff/coff.h>
using namespace Upp;
inline dword PeekIL(const void *p) { return Peek32le(p); }
inline word PeekIW(const void *p) { return Peek16le(p); }
inline void PokeIL(const void *p, dword d) { return Poke32le(p, d); }
inline void PokeIW(const void *p, word d) { return Poke16le(p, d); }
#endif//__uld_uld__