]> Dogcows Code - chaz/thecheat/blob - ServerDelegate.h
The Cheat 1.1.1
[chaz/thecheat] / ServerDelegate.h
1
2 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3 // Project: The Cheat
4 //
5 // File: ServerDelegate.h
6 // Created: Thu Sep 25 2003
7 //
8 // Copyright: 2003 Chaz McGarvey. All rights reserved.
9 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10
11 #import <Cocoa/Cocoa.h>
12
13 #include <sys/types.h>
14
15 @class CheatServer;
16
17
18 @protocol ServerDelegate
19
20 - (void)server:(CheatServer *)server connectedWithSocket:(int)sock;
21 - (void)serverDisconnected:(CheatServer *)server;
22
23 - (void)server:(CheatServer *)server changedAddress:(NSString *)address;
24 - (void)server:(CheatServer *)server changedAction:(NSString *)action;
25
26 - (NSArray *)serverProcessList;
27 - (pid_t)serverFirstProcess;
28
29 @end
This page took 0.030961 seconds and 4 git commands to generate.