Changeset 592

Show
Ignore:
Timestamp:
09/29/07 17:09:11 (1 year ago)
Author:
takkaria
Message:

Some cleanup, and an optimistic use of the uint64_t type.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/externs.h

    r589 r592  
    431431extern void wipe_o_list(void); 
    432432extern s16b o_pop(void); 
    433 extern object_type* get_first_object(int y, int x); 
    434 extern object_type* get_next_object(const object_type *o_ptr); 
     433extern object_type *get_first_object(int y, int x); 
     434extern object_type *get_next_object(const object_type *o_ptr); 
    435435extern bool init_obj_alloc(void); 
    436436extern void free_obj_alloc(void); 
  • trunk/src/h-basic.h

    r537 r592  
    1 /* 
    2  * File: h-basic.h 
    3  * 
    4  * The most basic "include" file. 
    5  */ 
    6  
    71#ifndef INCLUDED_H_BASIC_H 
    82#define INCLUDED_H_BASIC_H 
     
    196190  typedef uint32_t u32b; 
    197191  typedef int32_t s32b; 
     192 
     193  typedef uint64_t u64b; 
     194  typedef int64_t s64b; 
    198195 
    199196#define MAX_UCHAR               UINT8_MAX