home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 April: Mac OS SDK / Dev.CD Apr 00 SDK1.toast / Development Kits / Mac OS / Apple Remote Access API / ARA Security API 1.0 / Sample Protocol Module / SampleSecurity.r < prev    next >
Encoding:
Text File  |  1993-11-04  |  1.6 KB  |  70 lines  |  [TEXT/MPS ]

  1. /*2345678901234567890123456789012345678901234567890123456789012345678901234567*/
  2. /*###########################################################################
  3.  #    File:    SampleSecurity.r                                                #
  4.  #                                                                            #
  5.  #    This file contains the resource declarations for the Sample security    #
  6.  #    module.  The Sample module is an example of an add-on security module    #
  7.  #    for Apple Remote Access.  This file when processed by Rez will            #
  8.  #    produce the resources for this module.                                    #
  9.  #                                                                            #
  10.  #    Copyright © 1992, 1993    Apple Computer, Inc.                            #
  11.  #    All rights reserved                                                        #
  12.  #    Author:  Farzad Sarabi                                                    #
  13.  #                                                                            #
  14.  #    Modification history:                                                    #
  15.  #                                                                            #
  16.  #    12/17/1992    Farzad        Created                                            #
  17.  ###########################################################################*/
  18.  
  19.  
  20.  
  21. #include    "Types.r"
  22. #include    "SysTypes.r"
  23. #include    "SecurityTypes.r"
  24. #include    "SecurityResInfo.h"
  25.  
  26. include        "SampleModuleDialogs";        /* the client & config dialogs */
  27.  
  28.  
  29. resource    'sinf' (200)
  30. {
  31.         kSecurityHasProtocolLevel
  32.             | kSecurityHasClientSide
  33.             | kSecurityHasServerSide
  34.             | kSecurityHasUserConfig,
  35.         'SMPL',                            /* signature */
  36.         0x100,                            /* version */
  37.         0,                                /* fmin_version */
  38.         0x100,                            /* fmax_version */
  39.  
  40.         128,                            /* fserver_data */
  41.         128,                            /* fclient_data */
  42.  
  43.         "Second ARA Password"            /* module's name */
  44.  
  45. };
  46.  
  47.  
  48.  
  49. resource 'vers' (1) {
  50.     0x1,
  51.     0x0,
  52.     final,
  53.     0x0,
  54.     verUS,
  55.     "1.0",
  56.     "1.0 © 1993 Apple Computer, Inc."
  57. };
  58.  
  59.  
  60.  
  61. resource 'vers' (2) {
  62.     0x2,
  63.     0x0,
  64.     final,
  65.     0x0,
  66.     verUS,
  67.     "2.0",
  68.     "(Security Module for ARA 2.0)"
  69. };
  70.