my_types.h
上传用户:zbbssh
上传日期:2007-01-08
资源大小:196k
文件大小:3k
源码类别:

CA认证

开发平台:

C/C++

  1. /*
  2. ------------------------------------------------------------------
  3.   Copyright
  4.   Sun Microsystems, Inc.
  5.   Copyright (C) 1994, 1995, 1996 Sun Microsystems, Inc.  All Rights
  6.   Reserved.
  7.   Permission is hereby granted, free of charge, to any person
  8.   obtaining a copy of this software and associated documentation
  9.   files (the "Software"), to deal in the Software without
  10.   restriction, including without limitation the rights to use,
  11.   copy, modify, merge, publish, distribute, sublicense, and/or sell
  12.   copies of the Software or derivatives of the Software, and to 
  13.   permit persons to whom the Software or its derivatives is furnished 
  14.   to do so, subject to the following conditions:
  15.   The above copyright notice and this permission notice shall be
  16.   included in all copies or substantial portions of the Software.
  17.   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  18.   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  19.   OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  20.   NONINFRINGEMENT.  IN NO EVENT SHALL SUN MICROSYSTEMS, INC., BE LIABLE
  21.   FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  22.   OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  23.   CONNECTION WITH THE SOFTWARE OR DERIVATES OF THIS SOFTWARE OR 
  24.   THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  25.   Except as contained in this notice, the name of Sun Microsystems, Inc.
  26.   shall not be used in advertising or otherwise to promote
  27.   the sale, use or other dealings in this Software or its derivatives 
  28.   without prior written authorization from Sun Microsystems, Inc.
  29. */
  30. #pragma ident "@(#)my_types.h 1.5 96/01/29 Sun Microsystems"
  31. #ifndef MY_TYPES_H
  32. #define MY_TYPES_H
  33. #include <stdio.h>
  34. #ifdef RW
  35. #include <rw/slistcol.h>
  36. #include <rw/cstring.h>
  37. typedef RWSlistCollectables Slist;
  38. typedef RWCollectable ListElem;
  39. typedef RWSlistCollectablesIterator SlistIterator;
  40. typedef RWCString String;
  41. typedef RWBoolean Boolean;
  42. #define SLList Slist
  43. #else
  44. #ifdef LIBG
  45. //enum Bool {BOOL_FALSE, BOOL_TRUE};
  46. //typedef RWBoolean boolean;
  47. #include <String.h>
  48. #include <Pix.h>
  49. #include <SLList.h>
  50. #define TRUE 1
  51. #define FALSE 0
  52. typedef int Boolean;
  53. #endif /* LIBG */
  54. #endif /* RW */
  55. #define BOOL_TRUE TRUE
  56. #define BOOL_FALSE FALSE
  57. typedef unsigned char byte;
  58. #ifdef SOLARIS2
  59. #define bzero(b, len) memset(b, 0, len)
  60. #define bcopy(b1, b2, len)  memcpy(b2, b1, len)
  61. #define bcmp(b1, b2, len)  memcmp(b1, b2, len)
  62. #else
  63. extern "C" {
  64. // int write(int, void *, int);
  65. // int read(int, void *, int);
  66. // void close(int);
  67. // void bzero(void *, int);
  68. // int bcopy(void *, void *, int);
  69. // int bcmp(void *, void *, int);
  70. // int strlen(const char *);
  71. // char *strcpy(char *, char *);
  72. // int strcmp(char *, char *); 
  73. // char *calloc(unsigned int, unsigned int);
  74. char *getenv(const char *);
  75. // int system(char *);
  76. };
  77. #endif 
  78. #endif MY_TYPES_H