├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── msvcrt ├── x64 │ └── msvcrt.lib └── x86 │ └── msvcrt.lib ├── open.sln └── open ├── open.cpp ├── open.rc ├── open.vcxproj ├── open.vcxproj.filters ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/open/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/open/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/open/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/open/HEAD/README.md -------------------------------------------------------------------------------- /msvcrt/x64/msvcrt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/open/HEAD/msvcrt/x64/msvcrt.lib -------------------------------------------------------------------------------- /msvcrt/x86/msvcrt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/open/HEAD/msvcrt/x86/msvcrt.lib -------------------------------------------------------------------------------- /open.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/open/HEAD/open.sln -------------------------------------------------------------------------------- /open/open.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/open/HEAD/open/open.cpp -------------------------------------------------------------------------------- /open/open.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/open/HEAD/open/open.rc -------------------------------------------------------------------------------- /open/open.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/open/HEAD/open/open.vcxproj -------------------------------------------------------------------------------- /open/open.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/open/HEAD/open/open.vcxproj.filters -------------------------------------------------------------------------------- /open/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/open/HEAD/open/resource.h -------------------------------------------------------------------------------- /open/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /open/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/open/HEAD/open/stdafx.h -------------------------------------------------------------------------------- /open/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/open/HEAD/open/targetver.h --------------------------------------------------------------------------------