fork
Configure Feed
Select the types of activity you want to include in your feed.
Reactos
fork
Configure Feed
Select the types of activity you want to include in your feed.
1
2include_directories(
3 BEFORE include
4 ../tdihelpers/include
5 ${REACTOS_SOURCE_DIR}/sdk/include/reactos/drivers)
6
7list(APPEND SOURCE
8 afd/bind.c
9 afd/connect.c
10 afd/context.c
11 afd/info.c
12 afd/listen.c
13 afd/lock.c
14 afd/main.c
15 afd/read.c
16 afd/select.c
17 ../tdihelpers/tdi.c
18 ../tdihelpers/tdiconn.c
19 afd/write.c
20 include/afd.h)
21
22add_library(afd MODULE ${SOURCE} afd.rc)
23target_link_libraries(afd ${PSEH_LIB})
24set_module_type(afd kernelmodedriver)
25add_importlibs(afd ntoskrnl hal)
26add_pch(afd include/afd.h SOURCE)
27add_cd_file(TARGET afd DESTINATION reactos/system32/drivers FOR all)
28add_registry_inf(afd_reg.inf)