Ignore:
Timestamp:
May 24, 2009, 7:17:10 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update Samba 3.3 to 3.3.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.3.x/source/include/includes.h

    r206 r221  
    471471#define SMB_BIG_INT long long
    472472#define SBIG_UINT(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
     473#define BIG_UINT(p, ofs) ((((SMB_BIG_UINT) IVAL(p,(ofs)+4))<<32)|IVAL(p,ofs))
    473474#else
    474475#define SMB_BIG_UINT unsigned long
    475476#define SMB_BIG_INT long
    476477#define SBIG_UINT(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
     478#define BIG_UINT(p, ofs) (IVAL(p,ofs))
    477479#endif
    478480
     
    791793#include "librpc/gen_ndr/srv_winreg.h"
    792794#include "librpc/gen_ndr/srv_initshutdown.h"
     795#include "librpc/gen_ndr/srv_netlogon.h"
     796#include "librpc/gen_ndr/srv_samr.h"
     797#include "librpc/gen_ndr/srv_wkssvc.h"
     798#include "librpc/gen_ndr/srv_srvsvc.h"
     799#include "librpc/gen_ndr/srv_ntsvcs.h"
     800#include "librpc/gen_ndr/srv_dssetup.h"
     801#include "librpc/gen_ndr/srv_dfs.h"
    793802
    794803/***** automatically generated prototypes *****/
Note: See TracChangeset for help on using the changeset viewer.