home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Headers / soundkit / NXSoundIn.h < prev    next >
Text File  |  1992-01-30  |  423b  |  24 lines

  1. /*
  2.  * NXSoundIn.h
  3.  *
  4.  * Interface to sound recording resources.
  5.  *
  6.  * Copyright (c) 1991, NeXT Computer, Inc.  All rights reserved. 
  7.  */
  8.  
  9. #import "NXSoundDevice.h"
  10.  
  11. @interface NXSoundIn:NXSoundDevice
  12. {
  13.     int _reserved1;
  14. }
  15.  
  16. /*
  17.  * Look up the sound-in device port.
  18.  * Returns PORT_NULL if look up fails.
  19.  * Normally only sent by NXSoundDevice -initOnHost.
  20.  */
  21. + (port_t)lookUpDevicePortOnHost:(const char *)hostName;
  22.  
  23. @end
  24.