Skip to content

Commit a428e33

Browse files
start
build a project
1 parent c466ae3 commit a428e33

9 files changed

Lines changed: 132 additions & 0 deletions

File tree

SockModule.sdf

23.7 MB
Binary file not shown.

SockModule.sln

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 11.00
3+
# Visual Studio 2010
4+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SockModule", "SockModule\SockModule.vcxproj", "{17AED0D8-6305-4ABC-A1AF-2908361B8792}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|Win32 = Debug|Win32
9+
Release|Win32 = Release|Win32
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{17AED0D8-6305-4ABC-A1AF-2908361B8792}.Debug|Win32.ActiveCfg = Debug|Win32
13+
{17AED0D8-6305-4ABC-A1AF-2908361B8792}.Debug|Win32.Build.0 = Debug|Win32
14+
{17AED0D8-6305-4ABC-A1AF-2908361B8792}.Release|Win32.ActiveCfg = Release|Win32
15+
{17AED0D8-6305-4ABC-A1AF-2908361B8792}.Release|Win32.Build.0 = Release|Win32
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
EndGlobal

SockModule.suo

12 KB
Binary file not shown.

SockModule/SockModule.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#include "SockModule.h"
2+
#include <WinSock2.h>
3+

SockModule/SockModule.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#pragma once
2+
#ifndef _SCOK_MODULE_H_
3+
#define _SCOK_MODULE_H_
4+
5+
6+
7+
8+
#endif

SockModule/SockModule.vcxproj

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Label="ProjectConfigurations">
4+
<ProjectConfiguration Include="Debug|Win32">
5+
<Configuration>Debug</Configuration>
6+
<Platform>Win32</Platform>
7+
</ProjectConfiguration>
8+
<ProjectConfiguration Include="Release|Win32">
9+
<Configuration>Release</Configuration>
10+
<Platform>Win32</Platform>
11+
</ProjectConfiguration>
12+
</ItemGroup>
13+
<PropertyGroup Label="Globals">
14+
<ProjectGuid>{17AED0D8-6305-4ABC-A1AF-2908361B8792}</ProjectGuid>
15+
<RootNamespace>SockModule</RootNamespace>
16+
</PropertyGroup>
17+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
18+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
19+
<ConfigurationType>Application</ConfigurationType>
20+
<UseDebugLibraries>true</UseDebugLibraries>
21+
<CharacterSet>MultiByte</CharacterSet>
22+
</PropertyGroup>
23+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
24+
<ConfigurationType>Application</ConfigurationType>
25+
<UseDebugLibraries>false</UseDebugLibraries>
26+
<WholeProgramOptimization>true</WholeProgramOptimization>
27+
<CharacterSet>MultiByte</CharacterSet>
28+
</PropertyGroup>
29+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
30+
<ImportGroup Label="ExtensionSettings">
31+
</ImportGroup>
32+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
33+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
34+
</ImportGroup>
35+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
36+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
37+
</ImportGroup>
38+
<PropertyGroup Label="UserMacros" />
39+
<PropertyGroup />
40+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
41+
<ClCompile>
42+
<WarningLevel>Level3</WarningLevel>
43+
<Optimization>Disabled</Optimization>
44+
</ClCompile>
45+
<Link>
46+
<GenerateDebugInformation>true</GenerateDebugInformation>
47+
</Link>
48+
</ItemDefinitionGroup>
49+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
50+
<ClCompile>
51+
<WarningLevel>Level3</WarningLevel>
52+
<Optimization>MaxSpeed</Optimization>
53+
<FunctionLevelLinking>true</FunctionLevelLinking>
54+
<IntrinsicFunctions>true</IntrinsicFunctions>
55+
</ClCompile>
56+
<Link>
57+
<GenerateDebugInformation>true</GenerateDebugInformation>
58+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
59+
<OptimizeReferences>true</OptimizeReferences>
60+
</Link>
61+
</ItemDefinitionGroup>
62+
<ItemGroup>
63+
<ClInclude Include="SockModule.h" />
64+
</ItemGroup>
65+
<ItemGroup>
66+
<ClCompile Include="SockModule.cpp" />
67+
</ItemGroup>
68+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
69+
<ImportGroup Label="ExtensionTargets">
70+
</ImportGroup>
71+
</Project>
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<Filter Include="源文件">
5+
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
6+
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
7+
</Filter>
8+
<Filter Include="头文件">
9+
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
10+
<Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
11+
</Filter>
12+
<Filter Include="资源文件">
13+
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
14+
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
15+
</Filter>
16+
</ItemGroup>
17+
<ItemGroup>
18+
<ClInclude Include="SockModule.h">
19+
<Filter>头文件</Filter>
20+
</ClInclude>
21+
</ItemGroup>
22+
<ItemGroup>
23+
<ClCompile Include="SockModule.cpp">
24+
<Filter>源文件</Filter>
25+
</ClCompile>
26+
</ItemGroup>
27+
</Project>

SockModule/SockModule.vcxproj.user

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
</Project>
31.1 MB
Binary file not shown.

0 commit comments

Comments
 (0)