Changeset 319 for trunk/src/lib


Ignore:
Timestamp:
08/21/14 04:02:01 (11 years ago)
Author:
epyon
Message:
  • created core module and moved all free source files there
  • took the opportunity to update all copyright lines and minor cleanup
  • minor fixes
  • not all examples are up to date
Location:
trunk/src/lib
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/assimp.cc

    r250 r319  
    2323#if defined( NV_ASSIMP_DYNAMIC )
    2424
    25 #include "nv/library.hh"
     25#include "nv/core/library.hh"
    2626
    2727#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 Kisielewicz
     1// Copyright (C) 2013-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    99#if defined( NV_CURSES_DYNAMIC )
    1010
    11 #include "nv/library.hh"
     11#include "nv/core/library.hh"
    1212
    1313#define NV_CURSES_FUN( rtype, fname, fparams ) rtype (*fname) fparams = nullptr;
  • trunk/src/lib/fmod.cc

    r203 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    99#if defined( NV_FMOD_DYNAMIC )
    1010
    11 #include "nv/library.hh"
     11#include "nv/core/library.hh"
    1212
    1313#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-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    99#if defined( NV_FREETYPE_DYNAMIC )
    1010
    11 #include "nv/library.hh"
     11#include "nv/core/library.hh"
    1212
    1313#define NV_FREETYPE_FUN( rtype, fname, fparams ) rtype (*fname) fparams = nullptr;
  • trunk/src/lib/gl.cc

    r311 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    55// For conditions of distribution and use, see copyright notice in nv.hh
    66
    7 #include "nv/common.hh"
    8 #include "nv/range.hh"
     7#include "nv/core/common.hh"
     8#include "nv/core/range.hh"
    99#include "nv/lib/gl.hh"
    1010
    1111#if defined( NV_GL_DYNAMIC )
    1212
    13 #include "nv/library.hh"
     13#include "nv/core/library.hh"
    1414
    1515#if defined( NV_SDL_GL )
  • trunk/src/lib/lua.cc

    r198 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    99#if defined( NV_LUA_DYNAMIC )
    1010
    11 #include "nv/library.hh"
     11#include "nv/core/library.hh"
    1212
    1313#if NV_LUA_VERSION == NV_LUA_52
  • trunk/src/lib/sdl.cc

    r171 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    99#if defined( NV_SDL_DYNAMIC )
    1010
    11 #include "nv/library.hh"
     11#include "nv/core/library.hh"
    1212
    1313#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-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    99#if defined( NV_SDL_DYNAMIC )
    1010
    11 #include "nv/library.hh"
     11#include "nv/core/library.hh"
    1212
    1313#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-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    99#if defined( NV_SDL_DYNAMIC )
    1010
    11 #include "nv/library.hh"
     11#include "nv/core/library.hh"
    1212
    1313#define NV_SDL_FUN( rtype, fname, fparams ) rtype (NV_SDL_APIENTRY *fname) fparams = nullptr;
Note: See TracChangeset for help on using the changeset viewer.