os_mac.h
上传用户:ycwykj01
上传日期:2007-01-04
资源大小:1819k
文件大小:2k
源码类别:

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: Operating-system dependent routines -- Macintosh version
  3.  *
  4.  * Author: Mark Crispin
  5.  * 6158 Lariat Loop NE
  6.  * Bainbridge Island, WA  98110-2098
  7.  * Internet: MRC@Panda.COM
  8.  *
  9.  * Date: 26 January 1992
  10.  * Last Edited: 8 August 1995
  11.  *
  12.  * Copyright 1995 by Mark Crispin
  13.  *
  14.  *  Permission to use, copy, modify, and distribute this software and its
  15.  * documentation for any purpose and without fee is hereby granted, provided
  16.  * that the above copyright notice appears in all copies and that both the
  17.  * above copyright notices and this permission notice appear in supporting
  18.  * documentation, and that the name of Mark Crispin not be used in advertising
  19.  * or publicity pertaining to distribution of the software without specific,
  20.  * written prior permission.  This software is made available "as is", and
  21.  * MARK CRISPIN DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD TO
  22.  * THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED WARRANTIES OF
  23.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN NO EVENT SHALL
  24.  * MARK CRISPIN BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES
  25.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  26.  * WHETHER IN AN ACTION OF CONTRACT, TORT (INCLUDING NEGLIGENCE) OR STRICT
  27.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
  28.  * THIS SOFTWARE.
  29.  *
  30.  */
  31. /*  This is a totally new operating-system dependent module for the Macintosh,
  32.  * written using THINK C on my Mac PowerBook-100 in my free time.
  33.  * Unlike earlier efforts, this version requires no external TCP library.  It
  34.  * also takes advantage of the Map panel in System 7 for the timezone.
  35.  */
  36. #include <stdlib.h>
  37. #include <string.h>
  38. #include <types.h>
  39. #include <unix.h>
  40. #ifndef noErr
  41. #include <Desk.h>
  42. #include <Devices.h>
  43. #include <Errors.h>
  44. #include <Events.h>
  45. #include <Fonts.h>
  46. #include <Memory.h>
  47. #include <Menus.h>
  48. #include <ToolUtils.h>
  49. #include <Windows.h>
  50. #endif
  51. #define L_SET SEEK_SET
  52. #define L_INCR SEEK_CUR
  53. #define L_XTND SEEK_END
  54. extern short resolveropen; /* make this global so caller can sniff */
  55. #include "env_mac.h"
  56. #include "fs.h"
  57. #include "ftl.h"
  58. #include "nl.h"
  59. #include "tcp.h"
  60. #define TCPDRIVER "p.IPP"
  61. #define gethostid clock
  62. long wait (void);
  63. long random (void);