~ubuntu-branches/ubuntu/wily/orthanc-postgresql/wily

« back to all changes in this revision

Viewing changes to Core/PostgreSQLStatement.cpp

  • Committer: Package Import Robot
  • Author(s): Sebastien Jodogne, Sebastien Jodogne, Karsten Hilbert
  • Date: 2015-08-03 09:23:28 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20150803092328-swn3mnpj0fz34v42
Tags: 1.2-1
[ Sebastien Jodogne ]
* New upstream version

[ Karsten Hilbert ]
* Enhancements for README.Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#include <c.h>
31
31
#include <catalog/pg_type.h>
32
32
 
 
33
#if defined(__APPLE__)
 
34
#  include <libkern/OSByteOrder.h>
 
35
#  define htobe32(x) OSSwapHostToBigInt32(x)
 
36
#  define htobe64(x) OSSwapHostToBigInt64(x)
 
37
#endif
 
38
 
33
39
 
34
40
namespace OrthancPlugins
35
41
{