src/depot_type.h
author rubidium
Tue, 16 Dec 2008 17:58:27 +0000
changeset 10426 4a77f7049b5e
parent 8768 4bcc90746175
permissions -rw-r--r--
(svn r14679) -Fix [FS#2431]: opening the OSK on the chatbox did disable map scrolling (with keyboard) until another window with editbox was opened and closed. Just "refcount" the open edit boxes instead of setting/clearing a bit when opening/closing a window.
8768
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
     1
/* $Id$ */
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
     2
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
     3
/** @file depot_type.h Header files for depots (not hangars) */
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
     4
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
     5
#ifndef DEPOT_TYPE_H
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
     6
#define DEPOT_TYPE_H
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
     7
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
     8
typedef uint16 DepotID;
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
     9
struct Depot;
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
    10
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
    11
#endif /* DEPOT_TYPE_H */