Changeset ad9feec
- Timestamp:
- 2008-08-30T18:59:58Z (16 years ago)
- Branches:
- master
- Children:
- 1917a1ec
- Parents:
- 0a4f6f4
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r0a4f6f4 rad9feec 10 10 11 11 # Program variables 12 objects = account.o bitlbee.o c rypting.o help.o ipc.o irc.o irc_commands.o nick.o query.o root_commands.o set.o storage.o $(STORAGE_OBJS) user.o12 objects = account.o bitlbee.o chat.o crypting.o help.o ipc.o irc.o irc_commands.o nick.o query.o root_commands.o set.o storage.o $(STORAGE_OBJS) user.o 13 13 headers = account.h bitlbee.h commands.h conf.h config.h crypting.h help.h ipc.h irc.h log.h nick.h query.h set.h sock.h storage.h user.h lib/events.h lib/http_client.h lib/ini.h lib/md5.h lib/misc.h lib/proxy.h lib/sha1.h lib/ssl_client.h lib/url.h protocols/nogaim.h 14 14 subdirs = lib protocols -
bitlbee.h
r0a4f6f4 rad9feec 129 129 #include "account.h" 130 130 #include "nick.h" 131 #include "chat.h" 131 132 #include "conf.h" 132 133 #include "log.h" -
irc.h
r0a4f6f4 rad9feec 48 48 } irc_status_t; 49 49 50 typedef struct channel51 {52 char *name;53 } channel_t;54 55 50 typedef struct irc 56 51 { … … 87 82 struct query *queries; 88 83 struct account *accounts; 84 struct chat *chatrooms; 89 85 90 86 struct __USER *users;
Note: See TracChangeset
for help on using the changeset viewer.