media/mtransport/third_party/nrappkit/src/registry/registry_vtbl.h

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

michael@0 1 /*
michael@0 2 *
michael@0 3 * registry_vtbl.h
michael@0 4 *
michael@0 5 * $Source: /Users/ekr/tmp/nrappkit-dump/nrappkit/src/registry/registry_vtbl.h,v $
michael@0 6 * $Revision: 1.2 $
michael@0 7 * $Date: 2006/08/16 19:39:14 $
michael@0 8 *
michael@0 9 *
michael@0 10 * Copyright (C) 2006, Network Resonance, Inc.
michael@0 11 * All Rights Reserved
michael@0 12 *
michael@0 13 * Redistribution and use in source and binary forms, with or without
michael@0 14 * modification, are permitted provided that the following conditions
michael@0 15 * are met:
michael@0 16 *
michael@0 17 * 1. Redistributions of source code must retain the above copyright
michael@0 18 * notice, this list of conditions and the following disclaimer.
michael@0 19 * 2. Redistributions in binary form must reproduce the above copyright
michael@0 20 * notice, this list of conditions and the following disclaimer in the
michael@0 21 * documentation and/or other materials provided with the distribution.
michael@0 22 * 3. Neither the name of Network Resonance, Inc. nor the name of any
michael@0 23 * contributors to this software may be used to endorse or promote
michael@0 24 * products derived from this software without specific prior written
michael@0 25 * permission.
michael@0 26 *
michael@0 27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
michael@0 28 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
michael@0 29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
michael@0 30 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
michael@0 31 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
michael@0 32 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
michael@0 33 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
michael@0 34 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
michael@0 35 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
michael@0 36 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
michael@0 37 * POSSIBILITY OF SUCH DAMAGE.
michael@0 38 *
michael@0 39 *
michael@0 40 */
michael@0 41
michael@0 42 #ifndef __REGISTRY_VTBL_H__
michael@0 43 #define __REGISTRY_VTBL_H__
michael@0 44
michael@0 45 typedef struct nr_registry_module_ nr_registry_module;
michael@0 46
michael@0 47 typedef struct nr_registry_module_vtbl_ {
michael@0 48 int (*init)(nr_registry_module*);
michael@0 49
michael@0 50 int (*get_char)(NR_registry name, char *out);
michael@0 51 int (*get_uchar)(NR_registry name, UCHAR *out);
michael@0 52 int (*get_int2)(NR_registry name, INT2 *out);
michael@0 53 int (*get_uint2)(NR_registry name, UINT2 *out);
michael@0 54 int (*get_int4)(NR_registry name, INT4 *out);
michael@0 55 int (*get_uint4)(NR_registry name, UINT4 *out);
michael@0 56 int (*get_int8)(NR_registry name, INT8 *out);
michael@0 57 int (*get_uint8)(NR_registry name, UINT8 *out);
michael@0 58 int (*get_double)(NR_registry name, double *out);
michael@0 59 int (*get_registry)(NR_registry name, NR_registry out);
michael@0 60
michael@0 61 int (*get_bytes)(NR_registry name, UCHAR *out, size_t size, size_t *length);
michael@0 62 int (*get_string)(NR_registry name, char *out, size_t size);
michael@0 63 int (*get_length)(NR_registry name, size_t *length);
michael@0 64 int (*get_type)(NR_registry name, NR_registry_type type);
michael@0 65
michael@0 66 int (*set_char)(NR_registry name, char data);
michael@0 67 int (*set_uchar)(NR_registry name, UCHAR data);
michael@0 68 int (*set_int2)(NR_registry name, INT2 data);
michael@0 69 int (*set_uint2)(NR_registry name, UINT2 data);
michael@0 70 int (*set_int4)(NR_registry name, INT4 data);
michael@0 71 int (*set_uint4)(NR_registry name, UINT4 data);
michael@0 72 int (*set_int8)(NR_registry name, INT8 data);
michael@0 73 int (*set_uint8)(NR_registry name, UINT8 data);
michael@0 74 int (*set_double)(NR_registry name, double data);
michael@0 75 int (*set_registry)(NR_registry name);
michael@0 76
michael@0 77 int (*set_bytes)(NR_registry name, UCHAR *data, size_t length);
michael@0 78 int (*set_string)(NR_registry name, char *data);
michael@0 79
michael@0 80 int (*del)(NR_registry name);
michael@0 81
michael@0 82 int (*get_child_count)(NR_registry parent, size_t *count);
michael@0 83 int (*get_children)(NR_registry parent, NR_registry *data, size_t size, size_t *length);
michael@0 84
michael@0 85 int (*fin)(NR_registry name);
michael@0 86
michael@0 87 int (*dump)(int sorted);
michael@0 88 } nr_registry_module_vtbl;
michael@0 89
michael@0 90 struct nr_registry_module_ {
michael@0 91 void *handle;
michael@0 92 nr_registry_module_vtbl *vtbl;
michael@0 93 };
michael@0 94
michael@0 95 #endif
michael@0 96

mercurial