Revert "general: Remove vestigial typedef.h file"
This reverts commit e4013226e1.
This commit is contained in:
parent
ab97006ebb
commit
984cf6f838
|
|
@ -22,6 +22,11 @@
|
|||
typedef long time_t;
|
||||
typedef long clock_t;
|
||||
|
||||
typedef unsigned int uint;
|
||||
typedef unsigned long ulong;
|
||||
typedef unsigned short ushort;
|
||||
typedef unsigned char uchar;
|
||||
|
||||
#ifdef _WIN64
|
||||
#define __SIZE_TYPE__ unsigned long long
|
||||
#define __PTRDIFF_TYPE__ long long
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@
|
|||
#include "typedWritableReferenceCount.h"
|
||||
#include "pointerTo.h"
|
||||
#include "namable.h"
|
||||
#include "typedef.h"
|
||||
#include "thread.h"
|
||||
#include "plist.h"
|
||||
#include "luse.h"
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
#ifndef DISPLAYINFORMATION_H
|
||||
#define DISPLAYINFORMATION_H
|
||||
|
||||
#include "typedef.h"
|
||||
#include "graphicsStateGuardian.h"
|
||||
|
||||
struct EXPCL_PANDA_DISPLAY DisplayMode {
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@
|
|||
|
||||
#include "pandabase.h"
|
||||
#include "parserDefs.h"
|
||||
#include "typedef.h"
|
||||
|
||||
#include <string>
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
#define ANIMBUNDLEMAKER_H
|
||||
|
||||
#include "pandabase.h"
|
||||
#include "numeric_types.h"
|
||||
#include "typedef.h"
|
||||
|
||||
class EggNode;
|
||||
class EggGroupNode;
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@
|
|||
#include "vertexSlider.h"
|
||||
#include "character.h"
|
||||
#include "vector_PartGroupStar.h"
|
||||
#include "typedef.h"
|
||||
#include "pmap.h"
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@
|
|||
|
||||
#include "pandabase.h"
|
||||
|
||||
#include "typedef.h"
|
||||
#include "typedObject.h"
|
||||
#include "typedWritableReferenceCount.h"
|
||||
#include "pointerTo.h"
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ set(P3EXPRESS_HEADERS
|
|||
subfileInfo.h subfileInfo.I
|
||||
temporaryFile.h temporaryFile.I
|
||||
trueClock.I trueClock.h
|
||||
typedReferenceCount.I typedReferenceCount.h
|
||||
typedReferenceCount.I typedReferenceCount.h typedef.h
|
||||
virtualFileList.I virtualFileList.h
|
||||
virtualFileComposite.h virtualFileComposite.I
|
||||
virtualFile.h virtualFile.I
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@
|
|||
#define BUFFER_H
|
||||
|
||||
#include "pandabase.h"
|
||||
#include "typedef.h"
|
||||
#include "referenceCount.h"
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@
|
|||
#define ERROR_UTILS_H
|
||||
|
||||
#include "pandabase.h"
|
||||
#include "typedef.h"
|
||||
|
||||
BEGIN_PUBLISH
|
||||
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@
|
|||
#define HASHVAL_H
|
||||
|
||||
#include "pandabase.h"
|
||||
#include "typedef.h"
|
||||
#include "pnotify.h"
|
||||
#include "ramfile.h"
|
||||
#include "datagram.h"
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@
|
|||
|
||||
#ifdef HAVE_OPENSSL
|
||||
|
||||
#include "typedef.h"
|
||||
#include "pnotify.h"
|
||||
#include "filename.h"
|
||||
#include "plist.h"
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
#include "pandabase.h"
|
||||
#include "pointerToVoid.h"
|
||||
#include "referenceCount.h"
|
||||
#include "typedef.h"
|
||||
#include "memoryUsage.h"
|
||||
#include "config_express.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@
|
|||
#define RAMFILE_H
|
||||
|
||||
#include "pandabase.h"
|
||||
#include "typedef.h"
|
||||
#include "referenceCount.h"
|
||||
#include "extension.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@
|
|||
#define TRUECLOCK_H
|
||||
|
||||
#include "pandabase.h"
|
||||
#include "typedef.h"
|
||||
#include "pdeque.h"
|
||||
#include "mutexImpl.h"
|
||||
#include "config_express.h"
|
||||
|
|
|
|||
|
|
@ -0,0 +1,29 @@
|
|||
/**
|
||||
* PANDA 3D SOFTWARE
|
||||
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
||||
*
|
||||
* All use of this software is subject to the terms of the revised BSD
|
||||
* license. You should have received a copy of this license along
|
||||
* with this source code in a file named "LICENSE."
|
||||
*
|
||||
* @file typedef.h
|
||||
* @author mike
|
||||
* @date 1997-01-09
|
||||
*/
|
||||
|
||||
#ifndef TYPEDEF_H
|
||||
#define TYPEDEF_H
|
||||
|
||||
#include "pandabase.h"
|
||||
#include "numeric_types.h"
|
||||
|
||||
typedef unsigned char uchar;
|
||||
typedef unsigned short ushort;
|
||||
typedef unsigned int uint;
|
||||
typedef unsigned long ulong;
|
||||
|
||||
typedef int64_t longlong;
|
||||
typedef uint64_t ulonglong;
|
||||
|
||||
|
||||
#endif
|
||||
|
|
@ -16,6 +16,8 @@
|
|||
|
||||
#include "pandabase.h"
|
||||
|
||||
#include "typedef.h"
|
||||
|
||||
BEGIN_PUBLISH
|
||||
|
||||
enum CoordinateSystem {
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@
|
|||
|
||||
#include "parametricCurveCollection.h"
|
||||
|
||||
#include "typedef.h"
|
||||
#include "pvector.h"
|
||||
|
||||
class HermiteCurve;
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@
|
|||
#include "pandaNode.h"
|
||||
#include "luse.h"
|
||||
|
||||
#include "typedef.h"
|
||||
#include "plist.h"
|
||||
#include "pvector.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -16,6 +16,8 @@
|
|||
|
||||
#include "pandabase.h"
|
||||
|
||||
#include "typedef.h"
|
||||
|
||||
BEGIN_PUBLISH
|
||||
|
||||
enum ColorSpace {
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@
|
|||
|
||||
#include "pandabase.h"
|
||||
|
||||
#include "typedef.h"
|
||||
#include "typedObject.h"
|
||||
#include "typedWritableReferenceCount.h"
|
||||
#include "pointerTo.h"
|
||||
|
|
|
|||
Loading…
Reference in New Issue