File: ILServer.h

package info (click to toggle)
rosegarden 2.1pl3-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 3,604 kB
  • ctags: 4,346
  • sloc: ansic: 42,763; sh: 1,730; makefile: 441; tcl: 320
file content (39 lines) | stat: -rw-r--r-- 1,207 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
---------------------------------------------------------------------------------------------
			MIDI Sequencer - Final Year Project, A.J. Green
---------------------------------------------------------------------------------------------

File Name:	ILServer.h

Description:	Prototypes for functions that provide the server module of the Interlock
		messaging system. These functions are to be used when writing the top-box
		for a set of interlock applications. Note that the top-box must have a 
		window, although this window need not actually be visible.

Author:		AJG

History:

Update	Date		Programmer	Comments
======	====		==========	========
001	11/03/94	AJG		File Created.

--------------------------------------------------------------------------------------------
*/

#include "ILTypes.h"

#ifndef __IL_SERVER__
#define __IL_SERVER__

void IL_ServerInit(Widget                 ThisTask, 
		   char                  *ServerName, 
		   IL_DeRegCB             DeRegFunc,
		   IL_ServiceActivateCB   ActivationFunc,
		   IL_ServiceDeactivateCB DeactivationFunc);

pid_t	IL_StartTask(char *ServiceId);
void	IL_AddService(char *ServiceId, char *Path);
void	IL_KillAllTasks(Boolean Noisy);

#endif