Ignore:
Timestamp:
May 23, 2000, 10:35:01 PM (25 years ago)
Author:
jeroen
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/opengl/mesa/hash.h

    r2938 r3597  
    1 /* $Id: hash.h,v 1.1 2000-02-29 00:48:31 sandervl Exp $ */
     1/* $Id: hash.h,v 1.2 2000-05-23 20:34:51 jeroen Exp $ */
    22
    33/*
    44 * Mesa 3-D graphics library
    5  * Version:  3.1
     5 * Version:  3.3
    66 *
    77 * Copyright (C) 1999  Brian Paul   All Rights Reserved.
     
    2626
    2727
    28 
    29 
    30 
    3128#ifndef HASH_H
    3229#define HASH_H
    3330
    3431
    35 #include "gl.h"
     32#include "glheader.h"
    3633
    3734
     
    4037
    4138
    42 extern struct HashTable *NewHashTable(void);
     39extern struct _mesa_HashTable *_mesa_NewHashTable(void);
    4340
    44 extern void DeleteHashTable(struct HashTable *table);
     41extern void _mesa_DeleteHashTable(struct _mesa_HashTable *table);
    4542
    46 extern void *HashLookup(const struct HashTable *table, GLuint key);
     43extern void *_mesa_HashLookup(const struct _mesa_HashTable *table, GLuint key);
    4744
    48 extern void HashInsert(struct HashTable *table, GLuint key, void *data);
     45extern void _mesa_HashInsert(struct _mesa_HashTable *table, GLuint key, void *data);
    4946
    50 extern void HashRemove(struct HashTable *table, GLuint key);
     47extern void _mesa_HashRemove(struct _mesa_HashTable *table, GLuint key);
    5148
    52 extern GLuint HashFirstEntry(const struct HashTable *table);
     49extern GLuint _mesa_HashFirstEntry(struct _mesa_HashTable *table);
    5350
    54 extern void HashPrint(const struct HashTable *table);
     51extern void _mesa_HashPrint(const struct _mesa_HashTable *table);
    5552
    56 extern GLuint HashFindFreeKeyBlock(const struct HashTable *table, GLuint numKeys);
     53extern GLuint _mesa_HashFindFreeKeyBlock(struct _mesa_HashTable *table, GLuint numKeys);
    5754
    5855
Note: See TracChangeset for help on using the changeset viewer.