├── .gitignore ├── README.md ├── boot ├── boot.default.props ├── boot.props ├── boot.vcxproj ├── boot.vcxproj.filters ├── main.c ├── mapper.h ├── stdafx.h ├── util.c └── util.h ├── mapper ├── main.c ├── mapper.filters ├── mapper.vcxproj ├── mapper.vcxproj.filters ├── stdafx.h ├── util.c └── util.h └── umap ├── main.c ├── umap.vcxproj └── umap.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/README.md -------------------------------------------------------------------------------- /boot/boot.default.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/boot/boot.default.props -------------------------------------------------------------------------------- /boot/boot.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/boot/boot.props -------------------------------------------------------------------------------- /boot/boot.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/boot/boot.vcxproj -------------------------------------------------------------------------------- /boot/boot.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/boot/boot.vcxproj.filters -------------------------------------------------------------------------------- /boot/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/boot/main.c -------------------------------------------------------------------------------- /boot/mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/boot/mapper.h -------------------------------------------------------------------------------- /boot/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/boot/stdafx.h -------------------------------------------------------------------------------- /boot/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/boot/util.c -------------------------------------------------------------------------------- /boot/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/boot/util.h -------------------------------------------------------------------------------- /mapper/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/mapper/main.c -------------------------------------------------------------------------------- /mapper/mapper.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/mapper/mapper.filters -------------------------------------------------------------------------------- /mapper/mapper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/mapper/mapper.vcxproj -------------------------------------------------------------------------------- /mapper/mapper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/mapper/mapper.vcxproj.filters -------------------------------------------------------------------------------- /mapper/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/mapper/stdafx.h -------------------------------------------------------------------------------- /mapper/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/mapper/util.c -------------------------------------------------------------------------------- /mapper/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/mapper/util.h -------------------------------------------------------------------------------- /umap/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/umap/main.c -------------------------------------------------------------------------------- /umap/umap.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/umap/umap.vcxproj -------------------------------------------------------------------------------- /umap/umap.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btbd/umap/HEAD/umap/umap.vcxproj.filters --------------------------------------------------------------------------------