Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 3, 2011, 5:07:42 AM (13 years ago)
Author:
rgrieder
Message:

Updated Bullet from v2.77 to v2.78.
(I'm not going to make a branch for that since the update from 2.74 to 2.77 hasn't been tested that much either).

You will HAVE to do a complete RECOMPILE! I tested with MSVC and MinGW and they both threw linker errors at me.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/external/bullet/Bullet-C-Api.h

    r8351 r8393  
    6666*/
    6767
    68         extern  plPhysicsSdkHandle      plNewBulletSdk(); //this could be also another sdk, like ODE, PhysX etc.
     68        extern  plPhysicsSdkHandle      plNewBulletSdk(void); //this could be also another sdk, like ODE, PhysX etc.
    6969        extern  void            plDeletePhysicsSdk(plPhysicsSdkHandle   physicsSdk);
    7070
     
    117117        extern  plCollisionShapeHandle plNewConeShape(plReal radius, plReal height);
    118118        extern  plCollisionShapeHandle plNewCylinderShape(plReal radius, plReal height);
    119         extern  plCollisionShapeHandle plNewCompoundShape();
     119        extern  plCollisionShapeHandle plNewCompoundShape(void);
    120120        extern  void    plAddChildShape(plCollisionShapeHandle compoundShape,plCollisionShapeHandle childShape, plVector3 childPos,plQuaternion childOrn);
    121121
     
    123123
    124124        /* Convex Meshes */
    125         extern  plCollisionShapeHandle plNewConvexHullShape();
     125        extern  plCollisionShapeHandle plNewConvexHullShape(void);
    126126        extern  void            plAddVertex(plCollisionShapeHandle convexHull, plReal x,plReal y,plReal z);
    127127/* Concave static triangle meshes */
    128         extern  plMeshInterfaceHandle              plNewMeshInterface();
     128        extern  plMeshInterfaceHandle              plNewMeshInterface(void);
    129129        extern  void            plAddTriangle(plMeshInterfaceHandle meshHandle, plVector3 v0,plVector3 v1,plVector3 v2);
    130130        extern  plCollisionShapeHandle plNewStaticTriangleMeshShape(plMeshInterfaceHandle);
Note: See TracChangeset for help on using the changeset viewer.