NSL.h
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:37k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /*
  2.      File:       NSL.h
  3.  
  4.      Contains:   Interface to API for using the NSL Manager
  5.  
  6.      Version:    Technology: Mac OS 8.5
  7.                  Release:    QuickTime 6.0.2
  8.  
  9.      Copyright:  (c) 1985-2001 by Apple Computer, Inc., all rights reserved
  10.  
  11.      Bugs?:      For bug reports, consult the following page on
  12.                  the World Wide Web:
  13.  
  14.                      http://developer.apple.com/bugreporter/
  15.  
  16. */
  17. #ifndef __NSL__
  18. #define __NSL__
  19. #ifndef __CODEFRAGMENTS__
  20. #include "CodeFragments.h"
  21. #endif
  22. #ifndef __EVENTS__
  23. #include "Events.h"
  24. #endif
  25. #ifndef __THREADS__
  26. #include "Threads.h"
  27. #endif
  28. #ifndef __MACERRORS__
  29. #include "MacErrors.h"
  30. #endif
  31. #if PRAGMA_ONCE
  32. #pragma once
  33. #endif
  34. #ifdef __cplusplus
  35. extern "C" {
  36. #endif
  37. #if PRAGMA_IMPORT
  38. #pragma import on
  39. #endif
  40. #if PRAGMA_STRUCT_ALIGN
  41.     #pragma options align=mac68k
  42. #elif PRAGMA_STRUCT_PACKPUSH
  43.     #pragma pack(push, 2)
  44. #elif PRAGMA_STRUCT_PACK
  45.     #pragma pack(2)
  46. #endif
  47. enum {
  48.     kNSLMinSystemVersion        = 0x0900,                       /* equivalent to 9.0*/
  49.     kNSLMinOTVersion            = 0x0130                        /* equivalent to 1.3*/
  50. };
  51. enum {
  52.     kNSLDefaultListSize         = 256                           /* default list size for service and protocol lists*/
  53. };
  54. enum {
  55.     kNSLURLDelimiter            = ','                           /* delimits URL's within memory buffers*/
  56. };
  57. #define    kNSLErrorNoErr              {noErr, kNSLNoContext}      /* an initializer for the NSLError struct */
  58. enum {
  59.     kNSLNoContext               = 0                             /* the default context for NSLError structs*/
  60. };
  61. struct NSLError {
  62.     OSStatus                        theErr;
  63.     UInt32                          theContext;
  64. };
  65. typedef struct NSLError                 NSLError;
  66. typedef NSLError *                      NSLErrorPtr;
  67. enum {
  68.                                                                 /* Constants to use with NSLPrepareRequest*/
  69.                                                                 /* kNSLDuplicateSearchInProgress is not strictly an error.  The client is free to ignore*/
  70.                                                                 /* this result, and nothing bad will happen if it does.  It is*/
  71.                                                                 /* informational only.*/
  72.     kNSLDuplicateSearchInProgress = 100,
  73.     kNSLUserCanceled            = userCanceledErr,              /* User hit cancel from the NSLStandardGetURL dialog */
  74.                                                                 /* Invalid enumeratorRef  */
  75.     kNSLInvalidEnumeratorRef    = 0                             /* this is not an error; it is the equiv to a NULL ptr*/
  76. };
  77. typedef UInt16 NSLSearchState;
  78. enum {
  79.                                                                 /* State codes for notifiers.*/
  80.     kNSLSearchStateBufferFull   = 1,
  81.     kNSLSearchStateOnGoing      = 2,
  82.     kNSLSearchStateComplete     = 3,
  83.     kNSLSearchStateStalled      = 4,
  84.     kNSLWaitingForContinue      = 5
  85. };
  86. typedef UInt32 NSLEventCode;
  87. enum {
  88.                                                                 /* Event codes*/
  89.     kNSLServicesLookupDataEvent = 6,
  90.     kNSLNeighborhoodLookupDataEvent = 7,
  91.     kNSLNewDataEvent            = 8,
  92.     kNSLContinueLookupEvent     = 9
  93. };
  94. typedef UInt32                          NSLClientRef;
  95. typedef UInt32                          NSLRequestRef;
  96. typedef UInt32                          NSLOneBasedIndex;
  97. typedef char *                          NSLPath;
  98. typedef char *                          NSLServiceType;
  99. typedef Handle                          NSLServicesList;
  100. typedef unsigned char *                 NSLNeighborhood;
  101. /*
  102.    cstring which is a comma delimited list of protocols which can be used to
  103.    create a NSLProtocolList internally
  104. */
  105. typedef UInt32 NSLDialogOptionFlags;
  106. enum {
  107.     kNSLDefaultNSLDlogOptions   = 0x00000000,                   /* use defaults for all the options */
  108.     kNSLNoURLTEField            = 0x00000001                    /* don't show url text field for manual entry */
  109. };
  110. struct NSLDialogOptions {
  111.     UInt16                          version;
  112.     NSLDialogOptionFlags            dialogOptionFlags;          /* option flags for affecting the dialog's behavior */
  113.     Str255                          windowTitle;
  114.     Str255                          actionButtonLabel;          /* label of the default button (or null string for default) */
  115.     Str255                          cancelButtonLabel;          /* label of the cancel button (or null string for default) */
  116.     Str255                          message;                    /* custom message prompt (or null string for default) */
  117. };
  118. typedef struct NSLDialogOptions         NSLDialogOptions;
  119. /* the async information block for client<->manager interaction*/
  120. struct NSLClientAsyncInfo {
  121.     void *                          clientContextPtr;           /* set by the client for its own use*/
  122.     void *                          mgrContextPtr;              /* set by NSL mgr; ptr to request object ptr*/
  123.     char *                          resultBuffer;
  124.     long                            bufferLen;
  125.     long                            maxBufferSize;
  126.     UInt32                          startTime;                  /* when the search starts, to use with maxSearchTime to determine time-out condition*/
  127.     UInt32                          intStartTime;               /* used with alertInterval*/
  128.     UInt32                          maxSearchTime;              /* total time for search, in ticks (0 == no time limit)*/
  129.     UInt32                          alertInterval;              /* call client's notifier or return, every this many ticks ( 0 == don't use this param)*/
  130.     UInt32                          totalItems;                 /* total number of tuples currently in buffer*/
  131.     UInt32                          alertThreshold;             /* call client's notifier or return, every this many items found ( 0 == don't use this param)*/
  132.     NSLSearchState                  searchState;
  133.     NSLError                        searchResult;
  134.     NSLEventCode                    searchDataType;             /* this is a data type code which allows the client's asyncNotifier to properly*/
  135.                                                                 /* handle the data in resultBuffer.*/
  136. };
  137. typedef struct NSLClientAsyncInfo       NSLClientAsyncInfo;
  138. typedef NSLClientAsyncInfo *            NSLClientAsyncInfoPtr;
  139. /* the async information block plugin<->manager interaction*/
  140. struct NSLPluginAsyncInfo {
  141.     void *                          mgrContextPtr;              /* set by NSL mgr; ptr to request object ptr*/
  142.     void *                          pluginContextPtr;           /* set/used by individual plugins*/
  143.     void *                          pluginPtr;                  /* ptr to the plugin object waiting for continue lookup call*/
  144.     char *                          resultBuffer;               /* set by plugin to point at data*/
  145.     long                            bufferLen;
  146.     long                            maxBufferSize;
  147.     UInt32                          maxSearchTime;              /* total time for search, in ticks (0 == no time limit)*/
  148.     UInt32                          reserved1;
  149.     UInt32                          reserved2;
  150.     UInt32                          reserved3;
  151.     NSLClientRef                    clientRef;
  152.     NSLRequestRef                   requestRef;
  153.     NSLSearchState                  searchState;
  154.     OSStatus                        searchResult;
  155. };
  156. typedef struct NSLPluginAsyncInfo       NSLPluginAsyncInfo;
  157. typedef NSLPluginAsyncInfo *            NSLPluginAsyncInfoPtr;
  158. /* the mgr asynchronous notifier routine.*/
  159. typedef CALLBACK_API( void , NSLMgrNotifyProcPtr )(NSLPluginAsyncInfo *thePluginAsyncInfo);
  160. /* the client asynchronous notifier routine.*/
  161. typedef CALLBACK_API( void , NSLClientNotifyProcPtr )(NSLClientAsyncInfo *theClientAsyncInfo);
  162. typedef STACK_UPP_TYPE(NSLMgrNotifyProcPtr)                     NSLMgrNotifyUPP;
  163. typedef STACK_UPP_TYPE(NSLClientNotifyProcPtr)                  NSLClientNotifyUPP;
  164. #if OPAQUE_UPP_TYPES
  165.     EXTERN_API(NSLMgrNotifyUPP)
  166.     NewNSLMgrNotifyUPP             (NSLMgrNotifyProcPtr     userRoutine);
  167.     EXTERN_API(NSLClientNotifyUPP)
  168.     NewNSLClientNotifyUPP          (NSLClientNotifyProcPtr  userRoutine);
  169.     EXTERN_API(void)
  170.     DisposeNSLMgrNotifyUPP         (NSLMgrNotifyUPP         userUPP);
  171.     EXTERN_API(void)
  172.     DisposeNSLClientNotifyUPP      (NSLClientNotifyUPP      userUPP);
  173.     EXTERN_API(void)
  174.     InvokeNSLMgrNotifyUPP          (NSLPluginAsyncInfo *    thePluginAsyncInfo,
  175.                                     NSLMgrNotifyUPP         userUPP);
  176.     EXTERN_API(void)
  177.     InvokeNSLClientNotifyUPP       (NSLClientAsyncInfo *    theClientAsyncInfo,
  178.                                     NSLClientNotifyUPP      userUPP);
  179. #else
  180.     enum { uppNSLMgrNotifyProcInfo = 0x000000C0 };                  /* pascal no_return_value Func(4_bytes) */
  181.     enum { uppNSLClientNotifyProcInfo = 0x000000C0 };               /* pascal no_return_value Func(4_bytes) */
  182.     #define NewNSLMgrNotifyUPP(userRoutine)                         (NSLMgrNotifyUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppNSLMgrNotifyProcInfo, GetCurrentArchitecture())
  183.     #define NewNSLClientNotifyUPP(userRoutine)                      (NSLClientNotifyUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppNSLClientNotifyProcInfo, GetCurrentArchitecture())
  184.     #define DisposeNSLMgrNotifyUPP(userUPP)                         DisposeRoutineDescriptor(userUPP)
  185.     #define DisposeNSLClientNotifyUPP(userUPP)                      DisposeRoutineDescriptor(userUPP)
  186.     #define InvokeNSLMgrNotifyUPP(thePluginAsyncInfo, userUPP)      CALL_ONE_PARAMETER_UPP((userUPP), uppNSLMgrNotifyProcInfo, (thePluginAsyncInfo))
  187.     #define InvokeNSLClientNotifyUPP(theClientAsyncInfo, userUPP)   CALL_ONE_PARAMETER_UPP((userUPP), uppNSLClientNotifyProcInfo, (theClientAsyncInfo))
  188. #endif
  189. /* support for pre-Carbon UPP routines: NewXXXProc and CallXXXProc */
  190. #define NewNSLMgrNotifyProc(userRoutine)                        NewNSLMgrNotifyUPP(userRoutine)
  191. #define NewNSLClientNotifyProc(userRoutine)                     NewNSLClientNotifyUPP(userRoutine)
  192. #define CallNSLMgrNotifyProc(userRoutine, thePluginAsyncInfo)   InvokeNSLMgrNotifyUPP(thePluginAsyncInfo, userRoutine)
  193. #define CallNSLClientNotifyProc(userRoutine, theClientAsyncInfo) InvokeNSLClientNotifyUPP(theClientAsyncInfo, userRoutine)
  194. /*
  195.    this struct is a format for dealing with our internal data representation.  Typed data will be contiguous chunk of
  196.    memory, with the first 4 bytes being a data "descriptor".
  197. */
  198. struct NSLTypedData {
  199.     unsigned long                   dataType;
  200.     unsigned long                   lengthOfData;
  201. /*  void*                           theData; */
  202. };
  203. typedef struct NSLTypedData             NSLTypedData;
  204. typedef NSLTypedData *                  NSLTypedDataPtr;
  205. #define kNSLDataType                'NSL_'
  206. /*
  207.    This is just a header at the beginning of a handle that stores our list of service types.
  208.    Each service type is a pascal string, so each service type starts after the end of the
  209.    previous one.
  210. */
  211. struct NSLServicesListHeader {
  212.     unsigned long                   numServices;
  213.     unsigned long                   logicalLen;                 /* length of all usable data in handle*/
  214. /*  Ptr                             firstService; */
  215. };
  216. typedef struct NSLServicesListHeader    NSLServicesListHeader;
  217. typedef NSLServicesListHeader *         NSLServicesListHeaderPtr;
  218. /* some defs for common protocols*/
  219. #define    kSLPProtocolType            "SLP"
  220. #define   kDNSProtocolType            "DNS"
  221. #define   kLDAPProtocolType           "LDAP"
  222. #define kNBPProtocolType         "NBP"
  223. /*
  224.    general information from a plug-in.  Includes supported protocols, data types and services,
  225.    as well as an info/comment string describing the function of the plug-in in human-readable
  226.    form.  The offsets point to the beginning of each list of data returned, and the protocol
  227.    data offset is the startOfData member of the struct
  228. */
  229. struct NSLPluginData {
  230.     long                            reserved1;
  231.     long                            reserved2;
  232.     long                            reserved3;
  233.     Boolean                         supportsRegistration;
  234.     Boolean                         isPurgeable;
  235.     UInt16                          totalLen;                   /* length of everything, including header*/
  236.     UInt16                          dataTypeOffset;
  237.     UInt16                          serviceListOffset;
  238.     UInt16                          protocolListOffset;
  239.     UInt16                          commentStringOffset;
  240. /*  char*                           startOfData; */
  241.                                                                 /* protocol data is first on the list*/
  242. };
  243. typedef struct NSLPluginData            NSLPluginData;
  244. typedef NSLPluginData *                 NSLPluginDataPtr;
  245. /*
  246.   -----------------------------------------------------------------------------
  247.     Finding out if the library is present and getting its version
  248.   -----------------------------------------------------------------------------
  249. */
  250. EXTERN_API( UInt32 )
  251. NSLLibraryVersion               (void);
  252.    #ifdef __cplusplus
  253.      inline pascal Boolean NSLLibraryPresent() { return NSLLibraryVersion != (void*)kUnresolvedCFragSymbolAddress; }
  254.     #else
  255.       #define NSLLibraryPresent()     ((NSLLibraryVersion != (void*)kUnresolvedCFragSymbolAddress))
  256.   #endif
  257.  
  258. typedef CALLBACK_API( Boolean , NSLURLFilterProcPtr )(char *url, Str255 displayString)/*  optional filter function */;
  259. /* you can provide for calls to NSLStandardGetURL*/
  260. typedef CALLBACK_API( void , NSLEventProcPtr )(EventRecord *newEvent, void *userContext)/*  optional callback routine for getting Events while the dialog is up */;
  261. typedef STACK_UPP_TYPE(NSLURLFilterProcPtr)                     NSLURLFilterUPP;
  262. typedef STACK_UPP_TYPE(NSLEventProcPtr)                         NSLEventUPP;
  263. #if OPAQUE_UPP_TYPES
  264.     EXTERN_API(NSLURLFilterUPP)
  265.     NewNSLURLFilterUPP             (NSLURLFilterProcPtr     userRoutine);
  266.     EXTERN_API(NSLEventUPP)
  267.     NewNSLEventUPP                 (NSLEventProcPtr         userRoutine);
  268.     EXTERN_API(void)
  269.     DisposeNSLURLFilterUPP         (NSLURLFilterUPP         userUPP);
  270.     EXTERN_API(void)
  271.     DisposeNSLEventUPP             (NSLEventUPP             userUPP);
  272.     EXTERN_API(Boolean)
  273.     InvokeNSLURLFilterUPP          (char *                  url,
  274.                                     Str255                  displayString,
  275.                                     NSLURLFilterUPP         userUPP);
  276.     EXTERN_API(void)
  277.     InvokeNSLEventUPP              (EventRecord *           newEvent,
  278.                                     void *                  userContext,
  279.                                     NSLEventUPP             userUPP);
  280. #else
  281.     enum { uppNSLURLFilterProcInfo = 0x000003D0 };                  /* pascal 1_byte Func(4_bytes, 4_bytes) */
  282.     enum { uppNSLEventProcInfo = 0x000003C0 };                      /* pascal no_return_value Func(4_bytes, 4_bytes) */
  283.     #define NewNSLURLFilterUPP(userRoutine)                         (NSLURLFilterUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppNSLURLFilterProcInfo, GetCurrentArchitecture())
  284.     #define NewNSLEventUPP(userRoutine)                             (NSLEventUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppNSLEventProcInfo, GetCurrentArchitecture())
  285.     #define DisposeNSLURLFilterUPP(userUPP)                         DisposeRoutineDescriptor(userUPP)
  286.     #define DisposeNSLEventUPP(userUPP)                             DisposeRoutineDescriptor(userUPP)
  287.     #define InvokeNSLURLFilterUPP(url, displayString, userUPP)      (Boolean)CALL_TWO_PARAMETER_UPP((userUPP), uppNSLURLFilterProcInfo, (url), (displayString))
  288.     #define InvokeNSLEventUPP(newEvent, userContext, userUPP)       CALL_TWO_PARAMETER_UPP((userUPP), uppNSLEventProcInfo, (newEvent), (userContext))
  289. #endif
  290. /* support for pre-Carbon UPP routines: NewXXXProc and CallXXXProc */
  291. #define NewNSLURLFilterProc(userRoutine)                        NewNSLURLFilterUPP(userRoutine)
  292. #define NewNSLEventProc(userRoutine)                            NewNSLEventUPP(userRoutine)
  293. #define CallNSLURLFilterProc(userRoutine, url, displayString)   InvokeNSLURLFilterUPP(url, displayString, userRoutine)
  294. #define CallNSLEventProc(userRoutine, newEvent, userContext)    InvokeNSLEventUPP(newEvent, userContext, userRoutine)
  295. /*
  296.   -----------------------------------------------------------------------------
  297.     High level API calls: the following two calls are ALL an application needs
  298.     to register/deregister its service.
  299.     If you use these, you don't need to make any of the other calls to NSLAPI 
  300.     (including NSLOpenNavigationAPI) 
  301.   -----------------------------------------------------------------------------
  302. */
  303. /* <--- error code from registration */
  304. /* ---> urlToRegister is a null terminated url that has only legal characters defined for URLs.  Use HexEncodeText to encode*/
  305. /*          portions of the url that have illegal characters */
  306. /* ---> neighborhoodToRegisterIn is an optional parameter for explicitly defining a neighborhood to register in.
  307.             If parameter is NULL, then the plugins will determine where to register the service */
  308. EXTERN_API( NSLError )
  309. NSLStandardRegisterURL          (NSLPath                urlToRegister,
  310.                                  NSLNeighborhood        neighborhoodToRegisterIn) /* can be NULL */;
  311. /* <--- error code from registration */
  312. /* ---> urlToRegister is a null terminated url that has only legal characters defined for URLs.  Use HexEncodeText to encode*/
  313. /*          portions of the url that have illegal characters */
  314. /* ---> neighborhoodToDeregisterIn is an optional parameter for explicitly defining a neighborhood to register in.
  315.             If parameter is NULL, then the plugins will determine where to register the service */
  316. EXTERN_API( NSLError )
  317. NSLStandardDeregisterURL        (NSLPath                urlToDeregister,
  318.                                  NSLNeighborhood        neighborhoodToDeregisterIn) /* can be NULL */;
  319. /* <--- function returns OSStatus of the operation.  noErr will be returned if valid, kNSLUserCanceled will be returned if the user cancels */
  320. /* ---> dialogOptions */
  321. /* ---> eventProc */
  322. /* ---> eventProcContextPtr */
  323. /* ---> filterProc */
  324. /* ---> serviceTypeList */
  325. /* <--- userSelectedURL */
  326. /* NSLDialogOptions* dialogOptions */
  327. /*
  328.    dialogOptions is a user defined structure defining the look, feel and operation of NSLStandardGetURL dialog
  329.    default behavior can be achieved by passing in a pointer to a structure that has been filled out by a previous
  330.    call to NSLGetDefaultDialogOptions or by passing in NULL.
  331. */
  332. /* NSLEventUPP eventProc */
  333. /*
  334.    the eventProc is a callback NSLURLFilterUPP that will
  335.    get called with Events that the dialog doesn't handle.  If you pass in nil,
  336.    you won't get update events while the NSLStandardGetURL dialog is open.
  337. */
  338. /* void* eventProcContextPtr */
  339. /* you can provide a pointer to some contextual data that you want to have sent to your eventProc filter*/
  340. /* NSLURLFilterProcPtr filterProc */
  341. /*
  342.    the filter param is a callback NSLURLFilterUPP that
  343.    will get called (if not nil) for each url that is going to be displayed in
  344.    the dialog's result list.  A result of false will not include the url for the
  345.    user to select from.  You also have the option of handling the way the url looks
  346.    in the dialog listing by copying the preferred name into the displayString
  347.    parameter.  (If left alone, NSLStandardGetURL dialog will strip the service type
  348.    portion off the url).
  349. */
  350. /* char* serviceTypeList */
  351. /*
  352.    the serviceTypeList parameter is a null terminated string that will 
  353.    directly affect the contents of the services popup in the dialog.
  354.    The structure of this string is a set of tuples as follows:
  355.    Name of ServiceType as to be represented in the popup followed by
  356.    a comma delimted list of service descriptors (ie http,https) that will
  357.    used in the search of that type.  Each comma delimited tuple is delimited
  358.    by semi-colons.
  359. */
  360. /*
  361.    For example:
  362.    If you want to search for services of type http (web), https (secure web),
  363.    and ftp, you could pass in the string "Web Servers,http,https;FTP Servers,ftp".
  364.    This would result in a popup list with two items ("Web Servers" and "FTP Servers")
  365.    and searches performed on them will provide results of type http and https for the
  366.    first, and ftp for the second.
  367. */
  368. /*
  369.    Results list Icons:
  370.    NSLStandardGetURL provides icons in its listings for the following types:
  371.    "http", "https", "ftp", "afp", "lpr", "LaserWriter", "AFPServer"
  372.    any other types will get a generic icon.  However, you can provide icons
  373.    if you wish by including an '#ics8' resource id at the end of your comma
  374.    delimited list.  The dialog will then use that icon if found in its results
  375.    list.  This icon will be used for all types in a tuple.
  376.    For example:
  377.    The param "Web Servers,http,https;Telnet Servers,telnet;NFS Servers,nfs,129"
  378.    would result in lists of http and https services to be shown with their default
  379.    icons, telnet servers would be shown with the default misc. icon and nfs
  380.    servers would be shown with your icon at resource id 129.
  381. */
  382. /* char** url */
  383. /*
  384.    pass in the address of a char* and it will point to the resulting url.  If the user
  385.    cancels (the function returns false), the pointer will be set to nil.  If the function
  386.    returns true (user selected a url), then you must call NSLFreeURL on the pointer when
  387.    you are done with it.
  388. */
  389. /*
  390.    Call this to have the user select a url based service from a dialog.
  391.    Function takes on input an optional filter proc, a serviceTypeList, and an address to a Ptr.
  392.    Function sets the value of the Ptr to a newly created c-style null terminated string
  393.    containing the user's choice of URL.
  394. */
  395. EXTERN_API( OSStatus )
  396. NSLStandardGetURL               (NSLDialogOptions *     dialogOptions, /* can be NULL */
  397.                                  NSLEventUPP            eventProc, /* can be NULL */
  398.                                  void *                 eventProcContextPtr, /* can be NULL */
  399.                                  NSLURLFilterUPP        filterProc, /* can be NULL */
  400.                                  char *                 serviceTypeList,
  401.                                  char **                userSelectedURL);
  402. /*-----------------------------------------------------------------------------*/
  403. EXTERN_API( OSStatus )
  404. NSLHexEncodeText                (const char *           rawText,
  405.                                  UInt16                 rawTextLen,
  406.                                  char *                 newTextBuffer,
  407.                                  UInt16 *               newTextBufferLen,
  408.                                  Boolean *              textChanged);
  409. EXTERN_API( OSStatus )
  410. NSLHexDecodeText                (const char *           encodedText,
  411.                                  UInt16                 encodedTextLen,
  412.                                  char *                 decodedTextBuffer,
  413.                                  UInt16 *               decodedTextBufferLen,
  414.                                  Boolean *              textChanged);
  415. EXTERN_API( OSStatus )
  416. NSLGetDefaultDialogOptions      (NSLDialogOptions *     dialogOptions);
  417. /* <--- function returns null (useful for setting variable at same time as freeing it */
  418. /* ---> url is memory created by a call to NSLStandardGetURL */
  419. EXTERN_API( char *)
  420. NSLFreeURL                      (char *                 url);
  421. /*
  422.   -----------------------------------------------------------------------------
  423.     Basic API Utility calls: sufficient to create, and parse data structures
  424.   -----------------------------------------------------------------------------
  425. */
  426. EXTERN_API( NSLServicesList )
  427. NSLMakeNewServicesList          (const char *           initialServiceList);
  428. EXTERN_API( NSLError )
  429. NSLAddServiceToServicesList     (NSLServicesList        serviceList,
  430.                                  NSLServiceType         serviceType);
  431. EXTERN_API( void )
  432. NSLDisposeServicesList          (NSLServicesList        theList);
  433. /*
  434.     The name reflects the name of the Neighborhood, i.e. "apple.com." or "AppleTalk Zone One".
  435.     The protocolList is a comma delimited list of protocols that the Neighborhood might exist in.
  436.     If the user passes in NULL, then all protocols will be queried.  The result must be disposed
  437.     of by the user by calling NSLFreeNeighborhood.
  438. */
  439. EXTERN_API( NSLNeighborhood )
  440. NSLMakeNewNeighborhood          (const char *           name,
  441.                                  const char *           protocolList) /* can be NULL */;
  442. /* creates an exact copy of an existing neighborhood */
  443. EXTERN_API( NSLNeighborhood )
  444. NSLCopyNeighborhood             (NSLNeighborhood        neighborhood);
  445. EXTERN_API( NSLNeighborhood )
  446. NSLFreeNeighborhood             (NSLNeighborhood        neighborhood);
  447. EXTERN_API( void )
  448. NSLGetNameFromNeighborhood      (NSLNeighborhood        neighborhood,
  449.                                  char **                name,
  450.                                  long *                 length);
  451. /*
  452.    create a block of formatted data, pointed to by newDataPtr.  This will be used
  453.    in calls (typically request-related calls) for plug-ins that handle the NSL data type.
  454. */
  455. EXTERN_API( OSStatus )
  456. NSLMakeServicesRequestPB        (NSLServicesList        serviceList,
  457.                                  NSLTypedDataPtr *      newDataPtr);
  458. /* releases any storage created with MakeXXXPB calls, associated with TypedData.*/
  459. EXTERN_API( NSLTypedDataPtr )
  460. NSLFreeTypedDataPtr             (NSLTypedDataPtr        nslTypeData);
  461. /*
  462.    utility function that returns whether a url was found, a pointer to the beginning
  463.    of the url, and the length of the URL.
  464. */
  465. EXTERN_API( Boolean )
  466. NSLGetNextUrl                   (NSLClientAsyncInfoPtr  infoPtr,
  467.                                  char **                urlPtr,
  468.                                  long *                 urlLength);
  469. /*
  470.    utility function that returns whether a Neighborhood was found, a pointer to the beginning
  471.    of the Neighborhood, and the length of the Neighborhood.
  472. */
  473. EXTERN_API( Boolean )
  474. NSLGetNextNeighborhood          (NSLClientAsyncInfoPtr  infoPtr,
  475.                                  NSLNeighborhood *      neighborhood,
  476.                                  long *                 neighborhoodLength);
  477. /*
  478.    NSLErrorToString:    convert a numeric error code to its string equivalent.  Caller must
  479.                         have allocated sufficient space to store both strings.  (Max 255 chars each)
  480.                                 
  481.                         The errorString parameter will return a textual explanation of what is wrong,
  482.                         while the solutionString returns a possible solution to get around the problem
  483. */
  484. EXTERN_API( OSStatus )
  485. NSLErrorToString                (NSLError               theErr,
  486.                                  char *                 errorString,
  487.                                  char *                 solutionString);
  488. /*
  489.   -----------------------------------------------------------------------------
  490.     Basic API calls: sufficient to create simple requests, and receive answers
  491.   -----------------------------------------------------------------------------
  492. */
  493. EXTERN_API( OSStatus )
  494. NSLOpenNavigationAPI            (NSLClientRef *         newRef);
  495. EXTERN_API( void )
  496. NSLCloseNavigationAPI           (NSLClientRef           theClient);
  497. /*
  498.     NSLPrepareRequest:  creates an NSLRequestRef, sets up some internal data
  499.     notifier is an NSLClientNotifyUPP that will be called when data is available, when the lookup has
  500.     completed, or if an error occurs.  When the notifier is called, the cookie will be the NSLRequestRef.
  501.     If notifier is NULL, then the NSLManager will assume that the request is made synchronously.  This
  502.     should only be used while in a separate thread, so that the client app can still process events, etc.
  503.     
  504.     contextPtr is a void* which is passed as the contextPtr argument when the notifier is called.  
  505.     
  506.     upon exit:
  507.     1) ref will contain a pointer to a NSLRequestRef which must be passed to all other functions
  508.     which require a NSLRequestRef.
  509.     2) infoPtr will point to a newly created ClientAsycnInfoPtr which will be disposed by the manager when the search is completed
  510.     NOTE: Only one search can be running at a time per clientRef.
  511. */
  512. EXTERN_API( NSLError )
  513. NSLPrepareRequest               (NSLClientNotifyUPP     notifier,
  514.                                  void *                 contextPtr,
  515.                                  NSLClientRef           theClient,
  516.                                  NSLRequestRef *        ref,
  517.                                  char *                 bufPtr,
  518.                                  unsigned long          bufLen,
  519.                                  NSLClientAsyncInfoPtr * infoPtr);
  520. /*
  521.    NSLStartNeighborhoodLookup: looking for neighborhoods associated with or neighboring a particular neighborhood
  522.     Passing in NULL for neighborhood will generate a list of a default neighborhood(s)
  523.    
  524. */
  525. EXTERN_API( NSLError )
  526. NSLStartNeighborhoodLookup      (NSLRequestRef          ref,
  527.                                  NSLNeighborhood        neighborhood,
  528.                                  NSLClientAsyncInfo *   asyncInfo);
  529. /*
  530.    NSLStartServicesLookup: starts looking for entities if the specified type in the specified neighborhood
  531.    
  532. */
  533. EXTERN_API( NSLError )
  534. NSLStartServicesLookup          (NSLRequestRef          ref,
  535.                                  NSLNeighborhood        neighborhood,
  536.                                  NSLTypedDataPtr        requestData,
  537.                                  NSLClientAsyncInfo *   asyncInfo);
  538. /* NSLContinueLookup:  continues a paused/outstanding lookup*/
  539. EXTERN_API( NSLError )
  540. NSLContinueLookup               (NSLClientAsyncInfo *   asyncInfo);
  541. /* NSLCancelRequest: cancels an ongoing search*/
  542. EXTERN_API( NSLError )
  543. NSLCancelRequest                (NSLRequestRef          ref);
  544. /*
  545.    NSLDeleteRequest: deletes info associated with this ref.  The ClientAsyncInfoPtr will no longer be valid
  546.     This must be called when the client is no longer using this requestRef.
  547. */
  548. EXTERN_API( NSLError )
  549. NSLDeleteRequest                (NSLRequestRef          ref);
  550. /*
  551.   -----------------------------------------------------------------------------
  552.    Utility API calls: use these accessors to manipulate NSL's typed data
  553.   -----------------------------------------------------------------------------
  554. */
  555. /* NSLParseServicesRequestPB provides the inverse of NSLMakeRequestPB, filling out the offsets found within newDataPtr*/
  556. /* <--- returns an OSStatus if any errors occur parsing the data */
  557. /* <--- newDataPtr is the construct passed to the plugin */
  558. /* ---> serviceListPtr is the address of a pointer which will be set to point at the portion of the newDataPtr that holds the serviceList to be searched */
  559. /* ---> serviceListLen is the length of the serviceListPtr data pointed to by serviceListPtr */
  560. EXTERN_API( OSStatus )
  561. NSLParseServicesRequestPB       (NSLTypedDataPtr        newDataPtr,
  562.                                  char **                serviceListPtr,
  563.                                  UInt16 *               serviceListLen);
  564. /* NSLParseServiceRegistrationPB provides for breaking apart a registration request from a client to a plugin*/
  565. /* <--- returns an OSStatus if any errors occur parsing the data */
  566. /* <--- newDataPtr is the construct passed to the plugin */
  567. /* ---> neighborhoodPtr gets set to point at the portion of the newDataPtr that contains the neighborhood */
  568. /* ---> neighborhoodLen is the length of the neighborhood pointed to by neighborhoodPtr */
  569. /* ---> urlPtr is the address of a pointer which will be set to point at the portion of the newDataPtr that holds the url to be registered */
  570. /* ---> urlLen is the length of the url data pointed to by urlPtr */
  571. EXTERN_API( OSStatus )
  572. NSLParseServiceRegistrationPB   (NSLTypedDataPtr        newDataPtr,
  573.                                  NSLNeighborhood *      neighborhoodPtr,
  574.                                  UInt16 *               neighborhoodLen,
  575.                                  char **                urlPtr,
  576.                                  UInt16 *               urlLen);
  577. /*
  578.     NSLGetErrorStringsFromResource makes a basic assumption!
  579.     errorString and solutionString both point to valid memory of at least 256 bytes!
  580. */
  581. /* <--- returns an OSStatus if any errors occur */
  582. /* ---> theErr is an OSStatus to be matched against a resource list of errors */
  583. /* ---> fileSpecPtr is a FSSpecPtr to the resource containing the list of errors */
  584. /* ---> errorResID is the resourceID of the NSLI resource of the list of errors */
  585. /* <--> errorString is a pointer to valid memory of at least 256 bytes which will be filled out by the error portion of the error string */
  586. /* <--> solutionString is a pointer to valid memory of at least 256 bytes which will be filled out by the solution portion of the error string */
  587. EXTERN_API( OSStatus )
  588. NSLGetErrorStringsFromResource  (OSStatus               theErr,
  589.                                  const FSSpec *         fileSpecPtr,
  590.                                  SInt16                 errorResID,
  591.                                  char *                 errorString,
  592.                                  char *                 solutionString);
  593. /* <--- Returns true if given service is in the given service list */
  594. /* ---> serviceList is a valid NSLServicesList containing information about services to be searched */
  595. /* ---> svcToFind is an NSLServiceType of a particular service to check if it is in the serviceList */
  596. EXTERN_API( Boolean )
  597. NSLServiceIsInServiceList       (NSLServicesList        serviceList,
  598.                                  NSLServiceType         svcToFind);
  599. /* <--- returns an OSStatus if any errors occur parsing the data */
  600. /* ---> svcString is the address of a pointer which will be set to point at the portion of theURL that holds the serviceType of theURL */
  601. /* ---> svcLen is the length of the serviceType pointed to by svcString */
  602. EXTERN_API( OSStatus )
  603. NSLGetServiceFromURL            (char *                 theURL,
  604.                                  char **                svcString,
  605.                                  UInt16 *               svcLen);
  606. /* <--- returns the length of a Neighborhood data structure */
  607. /* ---> neighborhood is a valid NSLNeighborhood */
  608. EXTERN_API( long )
  609. NSLGetNeighborhoodLength        (NSLNeighborhood        neighborhood);
  610. /*
  611.   -------------------------------------------------------------------------------------
  612.    Utility API calls: use these routines to separate plugin threads from client threads
  613.   -------------------------------------------------------------------------------------
  614. */
  615. /* this routine works the same as the Thread manager's routine NewThread, except */
  616. /* that the thread is added to the NSL manager's thread list. */
  617. EXTERN_API( OSErr )
  618. NSLNewThread                    (ThreadStyle            threadStyle,
  619.                                  ThreadEntryProcPtr     threadEntry,
  620.                                  void *                 threadParam,
  621.                                  Size                   stackSize,
  622.                                  ThreadOptions          options,
  623.                                  void **                threadResult,
  624.                                  ThreadID *             threadMade);
  625. /* this routine works the same as the Thread manager's routine DisposeThread, except */
  626. /* that the thread is removed from the NSL manager's thread list. */
  627. EXTERN_API( OSErr )
  628. NSLDisposeThread                (ThreadID               threadToDump,
  629.                                  void *                 threadResult,
  630.                                  Boolean                recycleThread);
  631. #if OLDROUTINENAMES
  632. typedef NSLClientAsyncInfo              ClientAsyncInfo;
  633. typedef NSLPluginAsyncInfo              PluginAsyncInfo;
  634. typedef NSLTypedData                    TypedData;
  635. typedef NSLPluginData                   PluginData;
  636. typedef NSLClientAsyncInfoPtr           ClientAsyncInfoPtr;
  637. typedef NSLPluginAsyncInfoPtr           PluginAsyncInfoPtr;
  638. typedef NSLTypedDataPtr                 TypedDataPtr;
  639. typedef NSLPluginDataPtr                PluginDataPtr;
  640. #endif  /* OLDROUTINENAMES */
  641. #if PRAGMA_STRUCT_ALIGN
  642.     #pragma options align=reset
  643. #elif PRAGMA_STRUCT_PACKPUSH
  644.     #pragma pack(pop)
  645. #elif PRAGMA_STRUCT_PACK
  646.     #pragma pack()
  647. #endif
  648. #ifdef PRAGMA_IMPORT_OFF
  649. #pragma import off
  650. #elif PRAGMA_IMPORT
  651. #pragma import reset
  652. #endif
  653. #ifdef __cplusplus
  654. }
  655. #endif
  656. #endif /* __NSL__ */