diff options
author | Craig Tiller <ctiller@google.com> | 2015-09-22 09:41:05 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-09-22 09:41:05 -0700 |
commit | 298751c1195523ef6228595043b583c3a6270e08 (patch) | |
tree | 9151ee4419b1273aaaa34b7d50c6a9dc79ae6632 /vsprojects/vcxproj | |
parent | af73d78b7838deb94673815ba3c1b0ebcadc5927 (diff) |
Split closures from iomgr.h
Diffstat (limited to 'vsprojects/vcxproj')
4 files changed, 26 insertions, 0 deletions
diff --git a/vsprojects/vcxproj/grpc/grpc.vcxproj b/vsprojects/vcxproj/grpc/grpc.vcxproj index f7217b1904..d88e038cf7 100644 --- a/vsprojects/vcxproj/grpc/grpc.vcxproj +++ b/vsprojects/vcxproj/grpc/grpc.vcxproj @@ -277,8 +277,10 @@ <ClInclude Include="..\..\..\src\core\iomgr\alarm.h" /> <ClInclude Include="..\..\..\src\core\iomgr\alarm_heap.h" /> <ClInclude Include="..\..\..\src\core\iomgr\alarm_internal.h" /> + <ClInclude Include="..\..\..\src\core\iomgr\closure.h" /> <ClInclude Include="..\..\..\src\core\iomgr\endpoint.h" /> <ClInclude Include="..\..\..\src\core\iomgr\endpoint_pair.h" /> + <ClInclude Include="..\..\..\src\core\iomgr\exec_ctx.h" /> <ClInclude Include="..\..\..\src\core\iomgr\fd_posix.h" /> <ClInclude Include="..\..\..\src\core\iomgr\iocp_windows.h" /> <ClInclude Include="..\..\..\src\core\iomgr\iomgr.h" /> @@ -466,6 +468,8 @@ </ClCompile> <ClCompile Include="..\..\..\src\core\iomgr\alarm_heap.c"> </ClCompile> + <ClCompile Include="..\..\..\src\core\iomgr\closure.c"> + </ClCompile> <ClCompile Include="..\..\..\src\core\iomgr\endpoint.c"> </ClCompile> <ClCompile Include="..\..\..\src\core\iomgr\endpoint_pair_posix.c"> diff --git a/vsprojects/vcxproj/grpc/grpc.vcxproj.filters b/vsprojects/vcxproj/grpc/grpc.vcxproj.filters index d373226d86..a835e8bfaa 100644 --- a/vsprojects/vcxproj/grpc/grpc.vcxproj.filters +++ b/vsprojects/vcxproj/grpc/grpc.vcxproj.filters @@ -169,6 +169,9 @@ <ClCompile Include="..\..\..\src\core\iomgr\alarm_heap.c"> <Filter>src\core\iomgr</Filter> </ClCompile> + <ClCompile Include="..\..\..\src\core\iomgr\closure.c"> + <Filter>src\core\iomgr</Filter> + </ClCompile> <ClCompile Include="..\..\..\src\core\iomgr\endpoint.c"> <Filter>src\core\iomgr</Filter> </ClCompile> @@ -608,12 +611,18 @@ <ClInclude Include="..\..\..\src\core\iomgr\alarm_internal.h"> <Filter>src\core\iomgr</Filter> </ClInclude> + <ClInclude Include="..\..\..\src\core\iomgr\closure.h"> + <Filter>src\core\iomgr</Filter> + </ClInclude> <ClInclude Include="..\..\..\src\core\iomgr\endpoint.h"> <Filter>src\core\iomgr</Filter> </ClInclude> <ClInclude Include="..\..\..\src\core\iomgr\endpoint_pair.h"> <Filter>src\core\iomgr</Filter> </ClInclude> + <ClInclude Include="..\..\..\src\core\iomgr\exec_ctx.h"> + <Filter>src\core\iomgr</Filter> + </ClInclude> <ClInclude Include="..\..\..\src\core\iomgr\fd_posix.h"> <Filter>src\core\iomgr</Filter> </ClInclude> diff --git a/vsprojects/vcxproj/grpc_unsecure/grpc_unsecure.vcxproj b/vsprojects/vcxproj/grpc_unsecure/grpc_unsecure.vcxproj index ecc1d26e64..d8e9c1de2b 100644 --- a/vsprojects/vcxproj/grpc_unsecure/grpc_unsecure.vcxproj +++ b/vsprojects/vcxproj/grpc_unsecure/grpc_unsecure.vcxproj @@ -256,8 +256,10 @@ <ClInclude Include="..\..\..\src\core\iomgr\alarm.h" /> <ClInclude Include="..\..\..\src\core\iomgr\alarm_heap.h" /> <ClInclude Include="..\..\..\src\core\iomgr\alarm_internal.h" /> + <ClInclude Include="..\..\..\src\core\iomgr\closure.h" /> <ClInclude Include="..\..\..\src\core\iomgr\endpoint.h" /> <ClInclude Include="..\..\..\src\core\iomgr\endpoint_pair.h" /> + <ClInclude Include="..\..\..\src\core\iomgr\exec_ctx.h" /> <ClInclude Include="..\..\..\src\core\iomgr\fd_posix.h" /> <ClInclude Include="..\..\..\src\core\iomgr\iocp_windows.h" /> <ClInclude Include="..\..\..\src\core\iomgr\iomgr.h" /> @@ -405,6 +407,8 @@ </ClCompile> <ClCompile Include="..\..\..\src\core\iomgr\alarm_heap.c"> </ClCompile> + <ClCompile Include="..\..\..\src\core\iomgr\closure.c"> + </ClCompile> <ClCompile Include="..\..\..\src\core\iomgr\endpoint.c"> </ClCompile> <ClCompile Include="..\..\..\src\core\iomgr\endpoint_pair_posix.c"> diff --git a/vsprojects/vcxproj/grpc_unsecure/grpc_unsecure.vcxproj.filters b/vsprojects/vcxproj/grpc_unsecure/grpc_unsecure.vcxproj.filters index 3813fb5b53..b2f963611c 100644 --- a/vsprojects/vcxproj/grpc_unsecure/grpc_unsecure.vcxproj.filters +++ b/vsprojects/vcxproj/grpc_unsecure/grpc_unsecure.vcxproj.filters @@ -109,6 +109,9 @@ <ClCompile Include="..\..\..\src\core\iomgr\alarm_heap.c"> <Filter>src\core\iomgr</Filter> </ClCompile> + <ClCompile Include="..\..\..\src\core\iomgr\closure.c"> + <Filter>src\core\iomgr</Filter> + </ClCompile> <ClCompile Include="..\..\..\src\core\iomgr\endpoint.c"> <Filter>src\core\iomgr</Filter> </ClCompile> @@ -506,12 +509,18 @@ <ClInclude Include="..\..\..\src\core\iomgr\alarm_internal.h"> <Filter>src\core\iomgr</Filter> </ClInclude> + <ClInclude Include="..\..\..\src\core\iomgr\closure.h"> + <Filter>src\core\iomgr</Filter> + </ClInclude> <ClInclude Include="..\..\..\src\core\iomgr\endpoint.h"> <Filter>src\core\iomgr</Filter> </ClInclude> <ClInclude Include="..\..\..\src\core\iomgr\endpoint_pair.h"> <Filter>src\core\iomgr</Filter> </ClInclude> + <ClInclude Include="..\..\..\src\core\iomgr\exec_ctx.h"> + <Filter>src\core\iomgr</Filter> + </ClInclude> <ClInclude Include="..\..\..\src\core\iomgr\fd_posix.h"> <Filter>src\core\iomgr</Filter> </ClInclude> |