Changeset 148 for trunk/include


Ignore:
Timestamp:
02/22/09 18:22:59 (15 years ago)
Author:
tim
Message:

integrated talloc into range_list

fixed some uninitialized structure values in the winsec library

Location:
trunk/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/range_list.h

    r122 r148  
    11/*
    2  * Copyright (C) 2008 Timothy D. Morgan
     2 * Copyright (C) 2008-2009 Timothy D. Morgan
    33 *
    44 * This program is free software; you can redistribute it and/or modify
     
    1818 */
    1919
     20#ifndef _RANGE_LIST_H
     21#define _RANGE_LIST_H
     22
    2023#include <stdlib.h>
    2124#include <stdbool.h>
    2225#include <stdint.h>
    2326#include <string.h>
    24 
    25 #ifndef _RANGE_LIST_H
    26 #define _RANGE_LIST_H
    27 
     27#include <math.h>
     28#include "talloc.h"
    2829
    2930typedef struct _range_list_element
  • trunk/include/winsec.h

    r147 r148  
    5454#define WINSEC_ACE_MIN_SIZE         16
    5555
    56 /* TODO: Fill in definitions of other flags */
    57 /* This means offsets contained in the descriptor are relative to the
    58  * descriptor's offset.  This had better be true in the registry.
     56/* XXX: Fill in definitions of other flags */
     57/* This self relative flag means offsets contained in the descriptor are relative
     58 * to the descriptor's offset.  This had better be true in the registry.
    5959 */
    6060#define WINSEC_DESC_SELF_RELATIVE   0x8000
     
    7070
    7171
    72 typedef struct _winsec_uuid 
     72typedef struct _winsec_uuid
    7373{
    7474       uint32 time_low;
Note: See TracChangeset for help on using the changeset viewer.