]> Dogcows Code - chaz/thecheat/blob - CheatListener.h
The Cheat 1.1.2
[chaz/thecheat] / CheatListener.h
1
2 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3 // Project: The Cheat
4 //
5 // File: CheatListener.h
6 // Created: Wed Sep 24 2003
7 //
8 // Copyright: 2003 Chaz McGarvey. All rights reserved.
9 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10
11 #import <Cocoa/Cocoa.h>
12 #import <Chaz/Chaz.h>
13
14 #import "ListenerDelegate.h"
15
16 #include "cheat_globals.h"
17 #include "cheat_net.h"
18
19 #include "stdio.h"
20
21 @class CheatServer;
22
23
24 @interface CheatListener : NSObject
25 {
26 id rootProxy;
27 int sockfd;
28
29 BOOL listenRemote;
30 }
31
32 + (NSConnection *)listenerWithDelegate:(id)del port:(int)port remote:(BOOL)remote;
33 + (void)listenerThread:(NSArray *)array;
34
35 - (id)initWithRootProxy:(id)proxy;
36
37 - (void)listenOnPort:(int)port remote:(BOOL)remote;
38 - (void)run;
39 - (void)cleanup;
40
41 @end
This page took 0.035793 seconds and 4 git commands to generate.