mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 09:21:53 +00:00
12 lines
188 B
Objective-C
12 lines
188 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface GSSpeechRecognitionServer
|
|
+ (void)start;
|
|
@end
|
|
|
|
int main(void)
|
|
{
|
|
[NSAutoreleasePool new];
|
|
[GSSpeechRecognitionServer start];
|
|
return 0;
|
|
}
|