https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 5e164a63a53ac66522e2ca02d01678b0d67d07bd authored by Trammell Hudson on 24 March 2011, 13:29:27 UTC
Allow enable-liveview to be toggled on and off
Tip revision: 5e164a6
pymite-helpers.h
/** \file
 * PyMite wrappers
 */
#ifndef _pymite_h_
#define _pymite_h_

#include "pm.h"

#define PM_ARG_INT(num) \
	( { \
		pPmObj_t pn = NATIVE_GET_LOCAL(num); \
		if( OBJ_GET_TYPE(pn) != OBJ_TYPE_INT ) \
		{ \
			PM_RAISE( retval, PM_RET_EX_TYPE ); \
			return retval; \
		} \
		((pPmInt_t)pn)->val; \
	} )
		
#endif
back to top