X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=typemap;h=c0e446945fcf88b3ef3dad58c202d47a9b16485d;hb=05c6b11c7fac8d6b44e61aca1cf4cd979ff2d34f;hp=e970268a64ef6f9ab65050b81b2e6f6969428dd0;hpb=153fe728a34b131fcdb4b37be7a34d36e38ac792;p=sdlgit%2FSDL_perl.git diff --git a/typemap b/typemap index e970268..c0e4469 100644 --- a/typemap +++ b/typemap @@ -2,6 +2,7 @@ TYPEMAP const Uint16 * T_PTR Uint8 T_U_CHAR Uint8 * T_PTR +const Uint8* T_PTR Uint8 ** T_PTR Uint16 T_UV Uint16 * T_PTR @@ -13,15 +14,15 @@ Sint16 * T_PTR Sint32 T_IV Sint32 * T_PTR SDL_Event * T_PTR -SDL_Surface * T_PTR +SDL_Surface * O_OBJECT SDL_SysWMmsg * T_PTR SDL_CD * T_PTR SDL_CDtrack * T_PTR SDL_TimerCallback T_PTR -SDL_Rect * T_PTR -SDL_Color * T_PTR +SDL_Rect * O_OBJECT +SDL_Color * O_OBJECT SDL_Palette * T_PTR -SDL_PixelFormat * T_PTR +SDL_PixelFormat * O_OBJECT SDL_Cursor * T_PTR SDL_AudioSpec * T_PTR SDL_AudioCVT * T_PTR @@ -41,7 +42,7 @@ UDPpacket * T_PTR UDPpacket ** T_PTR IPaddress* T_PTR SDLNet_GenericSocket T_PTR -TTF_Font * T_PTR +TTF_Font * O_OBJECT SDL_Overlay * T_PTR SMPEG_Info * T_PTR SMPEG * T_PTR @@ -51,9 +52,12 @@ GLbitfield T_IV GLenum T_IV ConsoleInformation * T_PTR GLboolean T_U_CHAR +GLUquadric * T_PTR +GLdouble T_NV GLUnurbsObj * T_PTR GLUtesselator * T_PTR GLuint T_UV +GLuint* T_PTR GLint T_IV GLint* T_PTR float * T_PTR @@ -63,3 +67,25 @@ Sound_DecoderInfo * T_PTR const Sound_DecoderInfo * T_PTR Sound_Sample * T_PTR Sound_AudioInfo * T_PTR +SDL_RWops* T_PTR +SDL_svg_context* T_PTR + +OUTPUT + +# The Perl object is blessed into 'CLASS', which should be a +# char* having the name of the package for the blessing. +O_OBJECT + sv_setref_pv( $arg, CLASS, (void*)$var ); + + +INPUT + +O_OBJECT + if( sv_isobject($arg) && (SvTYPE(SvRV($arg)) == SVt_PVMG) ) + $var = ($type)SvIV((SV*)SvRV( $arg )); + else{ + warn( \"${Package}::$func_name() -- $var is not a blessed SV reference\" ); + XSRETURN_UNDEF; + } + +