Changeset 319 for trunk/src/lib
- Timestamp:
- 08/21/14 04:02:01 (11 years ago)
- Location:
- trunk/src/lib
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/assimp.cc
r250 r319 23 23 #if defined( NV_ASSIMP_DYNAMIC ) 24 24 25 #include "nv/ library.hh"25 #include "nv/core/library.hh" 26 26 27 27 #define NV_ASSIMP_FUN( rtype, fname, fparams ) rtype (NV_ASSIMP_APIENTRY *fname) fparams = nullptr; -
trunk/src/lib/curses.cc
r218 r319 1 // Copyright (C) 2013 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2013-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 9 9 #if defined( NV_CURSES_DYNAMIC ) 10 10 11 #include "nv/ library.hh"11 #include "nv/core/library.hh" 12 12 13 13 #define NV_CURSES_FUN( rtype, fname, fparams ) rtype (*fname) fparams = nullptr; -
trunk/src/lib/fmod.cc
r203 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 9 9 #if defined( NV_FMOD_DYNAMIC ) 10 10 11 #include "nv/ library.hh"11 #include "nv/core/library.hh" 12 12 13 13 #define NV_FMOD_FUN( rtype, fname, fparams ) rtype (NV_FMOD_APIENTRY *fname) fparams = nullptr; -
trunk/src/lib/freetype2.cc
r167 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 9 9 #if defined( NV_FREETYPE_DYNAMIC ) 10 10 11 #include "nv/ library.hh"11 #include "nv/core/library.hh" 12 12 13 13 #define NV_FREETYPE_FUN( rtype, fname, fparams ) rtype (*fname) fparams = nullptr; -
trunk/src/lib/gl.cc
r311 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 5 5 // For conditions of distribution and use, see copyright notice in nv.hh 6 6 7 #include "nv/co mmon.hh"8 #include "nv/ range.hh"7 #include "nv/core/common.hh" 8 #include "nv/core/range.hh" 9 9 #include "nv/lib/gl.hh" 10 10 11 11 #if defined( NV_GL_DYNAMIC ) 12 12 13 #include "nv/ library.hh"13 #include "nv/core/library.hh" 14 14 15 15 #if defined( NV_SDL_GL ) -
trunk/src/lib/lua.cc
r198 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 9 9 #if defined( NV_LUA_DYNAMIC ) 10 10 11 #include "nv/ library.hh"11 #include "nv/core/library.hh" 12 12 13 13 #if NV_LUA_VERSION == NV_LUA_52 -
trunk/src/lib/sdl.cc
r171 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 9 9 #if defined( NV_SDL_DYNAMIC ) 10 10 11 #include "nv/ library.hh"11 #include "nv/core/library.hh" 12 12 13 13 #define NV_SDL_FUN( rtype, fname, fparams ) rtype (NV_SDL_APIENTRY *fname) fparams = nullptr; -
trunk/src/lib/sdl_image.cc
r168 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 9 9 #if defined( NV_SDL_DYNAMIC ) 10 10 11 #include "nv/ library.hh"11 #include "nv/core/library.hh" 12 12 13 13 #define NV_SDL_FUN( rtype, fname, fparams ) rtype (NV_SDL_APIENTRY *fname) fparams = nullptr; -
trunk/src/lib/sdl_mixer.cc
r194 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 9 9 #if defined( NV_SDL_DYNAMIC ) 10 10 11 #include "nv/ library.hh"11 #include "nv/core/library.hh" 12 12 13 13 #define NV_SDL_FUN( rtype, fname, fparams ) rtype (NV_SDL_APIENTRY *fname) fparams = nullptr;
Note: See TracChangeset
for help on using the changeset viewer.