https://bitbucket.org/hudson/magic-lantern
Revision 660b81c6efcb348b1f4e315a83f6ab54d1fc8679 authored by a1ex on 20 May 2011, 21:41:39 UTC, committed by a1ex on 20 May 2011, 21:41:39 UTC
1 parent 874fc66
Raw File
Tip revision: 660b81c6efcb348b1f4e315a83f6ab54d1fc8679 authored by a1ex on 20 May 2011, 21:41:39 UTC
Lens focus delay
Tip revision: 660b81c
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