~ubuntu-branches/ubuntu/quantal/sdlgfx/quantal

« back to all changes in this revision

Viewing changes to SDL_gfxBlitFunc.h

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese, Barry deFreese
  • Date: 2009-10-06 15:11:11 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20091006151111-ymnd515d0v9uw8qi
Tags: 2.0.20-1
[ Barry deFreese ]
* New upstream release. (Closes: #549250).
* Add ${misc:Depends} for debhelper package.
* Add README.source for quilt patch system.
* Improve -dev package description.
* Fix watch file.
* Bump Standards Version to 3.8.3. (No changes needed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
/* -------- Prototypes */
24
24
 
25
25
#ifdef WIN32
26
 
#ifdef BUILD_DLL
27
 
#define DLLINTERFACE __declspec(dllexport)
28
 
#else
29
 
#define DLLINTERFACE __declspec(dllimport)
30
 
#endif
31
 
#else
32
 
#define DLLINTERFACE
33
 
#endif
34
 
 
35
 
 
36
 
DLLINTERFACE int  SDL_gfxBlitRGBA(SDL_Surface * src, SDL_Rect * srcrect, SDL_Surface * dst, SDL_Rect * dstrect);
37
 
 
38
 
DLLINTERFACE  int SDL_gfxSetAlpha(SDL_Surface * src, Uint8 a);
 
26
#  ifdef DLL_EXPORT
 
27
#    define SDL_GFXBLITFUNC_SCOPE __declspec(dllexport)
 
28
#  else
 
29
#    ifdef LIBSDL_GFX_DLL_IMPORT
 
30
#      define SDL_GFXBLITFUNC_SCOPE __declspec(dllimport)
 
31
#    endif
 
32
#  endif
 
33
#endif
 
34
#ifndef SDL_GFXBLITFUNC_SCOPE
 
35
#  define SDL_GFXBLITFUNC_SCOPE extern
 
36
#endif
 
37
 
 
38
 
 
39
SDL_GFXBLITFUNC_SCOPE int  SDL_gfxBlitRGBA(SDL_Surface * src, SDL_Rect * srcrect, SDL_Surface * dst, SDL_Rect * dstrect);
 
40
 
 
41
SDL_GFXBLITFUNC_SCOPE  int SDL_gfxSetAlpha(SDL_Surface * src, Uint8 a);
39
42
 
40
43
 
41
44
/* -------- Macros */