Changeset 8 in Main
- Timestamp:
- Sep 13, 2024, 8:18:23 PM (2 months ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Platform/win64.mk
r6 r8 5 5 CFLAGS = -g -std=c99 -DPREFIX=\"$(PREFIX)\" -I $(PWD)/Common -I $(PWD)/openssl/include 6 6 LDFLAGS = -L $(PWD)/openssl/lib 7 LIBS = 7 LIBS = -lws2_32 8 8 EXEC = .exe -
trunk/Server/Makefile
r6 r8 6 6 .SUFFIXES: .c .o 7 7 8 OBJS = version.o main.o config.o 8 OBJS = version.o main.o config.o server.o 9 9 10 10 all: tewi$(EXEC) -
trunk/Server/main.c
r6 r8 10 10 11 11 #include "tw_config.h" 12 #include "tw_server.h" 12 13 #include "tw_version.h" 13 14 … … 44 45 return 1; 45 46 } 47 if(tw_server_init() != 0) { 48 fprintf(stderr, "Could not initialize the server\n"); 49 return 1; 50 } 46 51 cm_log("Daemon", "Ready"); 47 52 }
Note:
See TracChangeset
for help on using the changeset viewer.