Win32 updates, add version info to generated files, and store a batch file and Qsetup config file to help us generate snapshots. Still needs some work, but works on my Machine at home
This commit is contained in:
parent
b880d51b94
commit
70bc316667
59 changed files with 894 additions and 10 deletions
3
.gitattributes
vendored
3
.gitattributes
vendored
|
@ -325,6 +325,7 @@ lib/nxml/mrss_internal.h -text
|
||||||
lib/nxml/mrss_parser.c -text
|
lib/nxml/mrss_parser.c -text
|
||||||
lib/nxml/mrss_write.c -text
|
lib/nxml/mrss_write.c -text
|
||||||
lib/nxml/nxml.h -text
|
lib/nxml/nxml.h -text
|
||||||
|
lib/nxml/nxml.vcproj -text
|
||||||
lib/nxml/nxml_download.c -text
|
lib/nxml/nxml_download.c -text
|
||||||
lib/nxml/nxml_dtd.c -text
|
lib/nxml/nxml_dtd.c -text
|
||||||
lib/nxml/nxml_easy.c -text
|
lib/nxml/nxml_easy.c -text
|
||||||
|
@ -557,6 +558,8 @@ src/win32/neostats.conf -text
|
||||||
src/win32/neostats.rc -text
|
src/win32/neostats.rc -text
|
||||||
src/win32/resource.h -text
|
src/win32/resource.h -text
|
||||||
src/win32/winmain.c -text
|
src/win32/winmain.c -text
|
||||||
|
tools/NeoStats.qsp -text
|
||||||
|
tools/buildwin32snap.bat -text
|
||||||
tools/generate_header -text
|
tools/generate_header -text
|
||||||
tools/neostats.suppression -text
|
tools/neostats.suppression -text
|
||||||
tools/runvalgrind.sh -text
|
tools/runvalgrind.sh -text
|
||||||
|
|
|
@ -465,7 +465,9 @@
|
||||||
/* #undef USE_RAW */
|
/* #undef USE_RAW */
|
||||||
|
|
||||||
/* "Full Version" */
|
/* "Full Version" */
|
||||||
#define NEO_VERSION "3.0.a4"
|
#define NEO_VERSION "3.0.b3"
|
||||||
|
#define NEO_WIN32VER "3,0,b3,0"
|
||||||
|
#define NEO_WIN32VERN 3,0,0
|
||||||
|
|
||||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||||
/* #undef _FILE_OFFSET_BITS */
|
/* #undef _FILE_OFFSET_BITS */
|
||||||
|
|
|
@ -353,7 +353,7 @@ evbuffer_read(struct evbuffer *buf, int fd, int howmuch)
|
||||||
DWORD dwBytesRead;
|
DWORD dwBytesRead;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef FIONREAD
|
#ifndef WIN32
|
||||||
if (ioctl(fd, FIONREAD, &n) == -1 || n == 0) {
|
if (ioctl(fd, FIONREAD, &n) == -1 || n == 0) {
|
||||||
n = EVBUFFER_MAX_READ;
|
n = EVBUFFER_MAX_READ;
|
||||||
} else if (n > EVBUFFER_MAX_READ && n > howmuch) {
|
} else if (n > EVBUFFER_MAX_READ && n > howmuch) {
|
||||||
|
|
|
@ -296,7 +296,7 @@ int evbuffer_write(struct evbuffer *, int);
|
||||||
int evbuffer_read(struct evbuffer *, int, int);
|
int evbuffer_read(struct evbuffer *, int, int);
|
||||||
u_char *evbuffer_find(struct evbuffer *, const u_char *, size_t);
|
u_char *evbuffer_find(struct evbuffer *, const u_char *, size_t);
|
||||||
void evbuffer_setcb(struct evbuffer *, void (*)(struct evbuffer *, size_t, size_t, void *), void *);
|
void evbuffer_setcb(struct evbuffer *, void (*)(struct evbuffer *, size_t, size_t, void *), void *);
|
||||||
|
#ifndef WIN32
|
||||||
/*
|
/*
|
||||||
* Marshaling tagged data - We assume that all tags are inserted in their
|
* Marshaling tagged data - We assume that all tags are inserted in their
|
||||||
* numeric order - so that unknown tags will always be higher than the
|
* numeric order - so that unknown tags will always be higher than the
|
||||||
|
@ -339,7 +339,7 @@ int evtag_unmarshal_string(struct evbuffer *evbuf, u_int8_t need_tag,
|
||||||
|
|
||||||
int evtag_unmarshal_timeval(struct evbuffer *evbuf, u_int8_t need_tag,
|
int evtag_unmarshal_timeval(struct evbuffer *evbuf, u_int8_t need_tag,
|
||||||
struct timeval *ptv);
|
struct timeval *ptv);
|
||||||
|
#endif
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "mrss.h"
|
#include "mrss.h"
|
||||||
#include "mrss_internal.h"
|
#include "mrss_internal.h"
|
||||||
|
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "mrss.h"
|
#include "mrss.h"
|
||||||
#include "mrss_internal.h"
|
#include "mrss_internal.h"
|
||||||
|
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "mrss.h"
|
#include "mrss.h"
|
||||||
#include "mrss_internal.h"
|
#include "mrss_internal.h"
|
||||||
|
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "mrss.h"
|
#include "mrss.h"
|
||||||
#include "mrss_internal.h"
|
#include "mrss_internal.h"
|
||||||
|
|
|
@ -26,6 +26,10 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
|
#ifndef int64_t
|
||||||
|
#define int64_t __int64
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct __mrss_download_t__ __mrss_download_t;
|
typedef struct __mrss_download_t__ __mrss_download_t;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "mrss.h"
|
#include "mrss.h"
|
||||||
#include "mrss_internal.h"
|
#include "mrss_internal.h"
|
||||||
|
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "mrss.h"
|
#include "mrss.h"
|
||||||
#include "mrss_internal.h"
|
#include "mrss_internal.h"
|
||||||
|
|
|
@ -23,7 +23,9 @@
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
#ifdef HAVE_UNISTD_H
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#endif
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
260
lib/nxml/nxml.vcproj
Normal file
260
lib/nxml/nxml.vcproj
Normal file
|
@ -0,0 +1,260 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="8.00"
|
||||||
|
Name="nxml"
|
||||||
|
ProjectGUID="{708A9144-E032-4734-B2F2-F04D83DECEF9}"
|
||||||
|
Keyword="Win32Proj"
|
||||||
|
>
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"
|
||||||
|
/>
|
||||||
|
</Platforms>
|
||||||
|
<ToolFiles>
|
||||||
|
</ToolFiles>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory="Debug"
|
||||||
|
IntermediateDirectory="Debug"
|
||||||
|
ConfigurationType="4"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
Optimization="0"
|
||||||
|
AdditionalIncludeDirectories="../curl/;../include/;."
|
||||||
|
PreprocessorDefinitions="WIN32;_DEBUG;_LIB;"
|
||||||
|
MinimalRebuild="true"
|
||||||
|
BasicRuntimeChecks="3"
|
||||||
|
RuntimeLibrary="3"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="true"
|
||||||
|
DebugInformationFormat="4"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLibrarianTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory="Release"
|
||||||
|
IntermediateDirectory="Release"
|
||||||
|
ConfigurationType="4"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreBuildEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCustomBuildTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXMLDataGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCMIDLTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCCLCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../curl/;../include/;."
|
||||||
|
PreprocessorDefinitions="WIN32;NDEBUG;_LIB;"
|
||||||
|
RuntimeLibrary="2"
|
||||||
|
UsePrecompiledHeader="0"
|
||||||
|
WarningLevel="3"
|
||||||
|
Detect64BitPortabilityProblems="true"
|
||||||
|
DebugInformationFormat="3"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCResourceCompilerTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPreLinkEventTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCLibrarianTool"
|
||||||
|
OutputFile="..\nxml.lib"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCALinkTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCXDCMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCBscMakeTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCFxCopTool"
|
||||||
|
/>
|
||||||
|
<Tool
|
||||||
|
Name="VCPostBuildEventTool"
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Header Files"
|
||||||
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\mrss.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\mrss_internal.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\nxml.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\nxml_internal.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Resource Files"
|
||||||
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
|
>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Source Files"
|
||||||
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\mrss_download.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\mrss_edit.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\mrss_free.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\mrss_generic.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\mrss_parser.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\mrss_write.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\nxml_download.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\nxml_dtd.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\nxml_easy.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\nxml_edit.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\nxml_entity.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\nxml_error.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\nxml_free.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\nxml_init.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\nxml_namespace.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\nxml_parser.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\nxml_string.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\nxml_tools.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\nxml_utf.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\nxml_write.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "nxml.h"
|
#include "nxml.h"
|
||||||
#include "nxml_internal.h"
|
#include "nxml_internal.h"
|
||||||
|
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "nxml.h"
|
#include "nxml.h"
|
||||||
#include "nxml_internal.h"
|
#include "nxml_internal.h"
|
||||||
|
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "nxml.h"
|
#include "nxml.h"
|
||||||
#include "nxml_internal.h"
|
#include "nxml_internal.h"
|
||||||
|
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "nxml.h"
|
#include "nxml.h"
|
||||||
#include "nxml_internal.h"
|
#include "nxml_internal.h"
|
||||||
|
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "nxml.h"
|
#include "nxml.h"
|
||||||
#include "nxml_internal.h"
|
#include "nxml_internal.h"
|
||||||
|
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "nxml.h"
|
#include "nxml.h"
|
||||||
#include "nxml_internal.h"
|
#include "nxml_internal.h"
|
||||||
|
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "nxml.h"
|
#include "nxml.h"
|
||||||
#include "nxml_internal.h"
|
#include "nxml_internal.h"
|
||||||
|
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "nxml.h"
|
#include "nxml.h"
|
||||||
#include "nxml_internal.h"
|
#include "nxml_internal.h"
|
||||||
|
|
|
@ -21,6 +21,10 @@
|
||||||
|
|
||||||
#include "nxml.h"
|
#include "nxml.h"
|
||||||
|
|
||||||
|
#ifndef int64_t
|
||||||
|
#define int64_t __int64
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Rule [4] */
|
/* Rule [4] */
|
||||||
#define __NXML_NAMESTARTCHARS \
|
#define __NXML_NAMESTARTCHARS \
|
||||||
((ch=__NXML_U8()) == ':' \
|
((ch=__NXML_U8()) == ':' \
|
||||||
|
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "nxml.h"
|
#include "nxml.h"
|
||||||
#include "nxml_internal.h"
|
#include "nxml_internal.h"
|
||||||
|
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "nxml_internal.h"
|
#include "nxml_internal.h"
|
||||||
#include "nxml.h"
|
#include "nxml.h"
|
||||||
|
@ -1055,7 +1057,9 @@ __nxml_parse_buffer (nxml_t * nxml, char *r_buffer, size_t r_size)
|
||||||
|
|
||||||
return NXML_ERR_PARSER;
|
return NXML_ERR_PARSER;
|
||||||
}
|
}
|
||||||
|
#ifndef PACKAGE
|
||||||
|
#define PACKAGE "nxml"
|
||||||
|
#endif
|
||||||
if (!strcmp (attr->value, "1.0"))
|
if (!strcmp (attr->value, "1.0"))
|
||||||
nxml->version = NXML_VERSION_1_0;
|
nxml->version = NXML_VERSION_1_0;
|
||||||
|
|
||||||
|
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "nxml.h"
|
#include "nxml.h"
|
||||||
#include "nxml_internal.h"
|
#include "nxml_internal.h"
|
||||||
|
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "nxml.h"
|
#include "nxml.h"
|
||||||
#include "nxml_internal.h"
|
#include "nxml_internal.h"
|
||||||
|
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "nxml.h"
|
#include "nxml.h"
|
||||||
#include "nxml_internal.h"
|
#include "nxml_internal.h"
|
||||||
|
|
|
@ -19,8 +19,10 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#else
|
#else
|
||||||
|
#ifndef WIN32
|
||||||
# error Use configure; make; make install
|
# error Use configure; make; make install
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "nxml.h"
|
#include "nxml.h"
|
||||||
#include "nxml_internal.h"
|
#include "nxml_internal.h"
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -135,6 +136,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -218,6 +220,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -298,6 +301,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -373,6 +377,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -136,6 +137,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -220,6 +222,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -300,6 +303,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -468,6 +472,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -363,6 +367,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -395,6 +399,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -371,6 +375,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -363,6 +367,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -371,6 +375,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -135,6 +136,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -218,6 +220,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -298,6 +301,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -373,6 +377,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -134,6 +134,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include/"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -363,6 +364,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -134,6 +134,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -363,6 +364,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -363,6 +367,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -363,6 +367,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -363,6 +367,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -363,6 +367,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -399,6 +403,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -363,6 +367,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -363,6 +367,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -363,6 +367,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -135,6 +136,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -218,6 +220,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -297,6 +300,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -364,6 +368,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -363,6 +367,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -363,6 +367,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -371,6 +375,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -435,6 +439,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="GeoIP"
|
Name="GeoIP"
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -363,6 +367,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -363,6 +367,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -134,6 +135,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -217,6 +219,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -296,6 +299,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
AdditionalIncludeDirectories="../../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
|
@ -371,6 +375,10 @@
|
||||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
</Files>
|
</Files>
|
||||||
<Globals>
|
<Globals>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Microsoft Visual Studio Solution File, Format Version 9.00
|
Microsoft Visual Studio Solution File, Format Version 9.00
|
||||||
# Visual Studio 2005
|
# Visual C++ Express 2005
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "curl", "lib\curl\curl.vcproj", "{F9973FED-1759-4B07-ACD0-B949A9F73F29}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "curl", "lib\curl\curl.vcproj", "{F9973FED-1759-4B07-ACD0-B949A9F73F29}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcre", "lib\pcre\pcre.vcproj", "{934FCDE5-D077-4619-B79C-A62580EA1E4A}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcre", "lib\pcre\pcre.vcproj", "{934FCDE5-D077-4619-B79C-A62580EA1E4A}"
|
||||||
|
@ -11,6 +11,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libevent", "lib\event\WIN32
|
||||||
EndProject
|
EndProject
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcredftables", "lib\pcre\pcredftables.vcproj", "{310EA68C-162C-4C51-803D-32F800E6F311}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcredftables", "lib\pcre\pcredftables.vcproj", "{310EA68C-162C-4C51-803D-32F800E6F311}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nxml", "lib\nxml\nxml.vcproj", "{708A9144-E032-4734-B2F2-F04D83DECEF9}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Win32 = Debug|Win32
|
Debug|Win32 = Debug|Win32
|
||||||
|
@ -33,6 +35,10 @@ Global
|
||||||
{310EA68C-162C-4C51-803D-32F800E6F311}.Debug|Win32.Build.0 = Debug|Win32
|
{310EA68C-162C-4C51-803D-32F800E6F311}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
{310EA68C-162C-4C51-803D-32F800E6F311}.Release|Win32.ActiveCfg = Release|Win32
|
{310EA68C-162C-4C51-803D-32F800E6F311}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{310EA68C-162C-4C51-803D-32F800E6F311}.Release|Win32.Build.0 = Release|Win32
|
{310EA68C-162C-4C51-803D-32F800E6F311}.Release|Win32.Build.0 = Release|Win32
|
||||||
|
{708A9144-E032-4734-B2F2-F04D83DECEF9}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
|
{708A9144-E032-4734-B2F2-F04D83DECEF9}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
|
{708A9144-E032-4734-B2F2-F04D83DECEF9}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
|
{708A9144-E032-4734-B2F2-F04D83DECEF9}.Release|Win32.Build.0 = Release|Win32
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
|
|
@ -56,13 +56,15 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
PreprocessorDefinitions="_VC80_UPGRADE=0x0710;_DEBUG=1;NEOSTATSCORE=1"
|
||||||
|
Culture="3081"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalDependencies="Ws2_32.lib winmm.lib shlwapi.lib Iphlpapi.lib curld.lib pcred.lib libevent.lib"
|
AdditionalDependencies="Ws2_32.lib winmm.lib shlwapi.lib Iphlpapi.lib curld.lib pcred.lib libevent.lib nxml.lib"
|
||||||
OutputFile="$(OutDir)/neostats.exe"
|
OutputFile="$(OutDir)/neostats.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
AdditionalLibraryDirectories="..\lib;..\lib\event\WIN32-Prj\Debug"
|
AdditionalLibraryDirectories="..\lib;..\lib\event\WIN32-Prj\Debug"
|
||||||
|
@ -135,13 +137,16 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
|
PreprocessorDefinitions="_VC80_UPGRADE=0x0710;NEOSTATSCORE=1"
|
||||||
|
Culture="3081"
|
||||||
|
AdditionalIncludeDirectories="../include"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalDependencies="Ws2_32.lib winmm.lib Iphlpapi.lib shlwapi.lib curl.lib pcre.lib libevent.lib"
|
AdditionalDependencies="Ws2_32.lib winmm.lib Iphlpapi.lib shlwapi.lib curl.lib pcre.lib libevent.lib nxml.lib"
|
||||||
OutputFile="$(OutDir)/neostats.exe"
|
OutputFile="$(OutDir)/neostats.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
AdditionalLibraryDirectories="..\lib;..\lib\event\WIN32-Prj\Release"
|
AdditionalLibraryDirectories="..\lib;..\lib\event\WIN32-Prj\Release"
|
||||||
|
@ -881,6 +886,10 @@
|
||||||
RelativePath=".\win32\neostats.rc"
|
RelativePath=".\win32\neostats.rc"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\win32\neostatsversion.rc"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="docs"
|
Name="docs"
|
||||||
|
|
|
@ -2,12 +2,13 @@
|
||||||
//
|
//
|
||||||
#include "resource.h"
|
#include "resource.h"
|
||||||
|
|
||||||
|
|
||||||
#define APSTUDIO_READONLY_SYMBOLS
|
#define APSTUDIO_READONLY_SYMBOLS
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// Generated from the TEXTINCLUDE 2 resource.
|
// Generated from the TEXTINCLUDE 2 resource.
|
||||||
//
|
//
|
||||||
#include "afxres.h"
|
#include "windows.h"
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
#undef APSTUDIO_READONLY_SYMBOLS
|
#undef APSTUDIO_READONLY_SYMBOLS
|
||||||
|
@ -34,7 +35,7 @@ END
|
||||||
|
|
||||||
2 TEXTINCLUDE
|
2 TEXTINCLUDE
|
||||||
BEGIN
|
BEGIN
|
||||||
"#include ""afxres.h""\r\n"
|
"#include ""windows.h""\r\n"
|
||||||
"\0"
|
"\0"
|
||||||
END
|
END
|
||||||
|
|
||||||
|
|
331
tools/NeoStats.qsp
Normal file
331
tools/NeoStats.qsp
Normal file
|
@ -0,0 +1,331 @@
|
||||||
|
[General]
|
||||||
|
FileVersion=1.1
|
||||||
|
FileType=QSetupIniFile
|
||||||
|
ComposerVersion=8.5.0.4
|
||||||
|
OperatingSystem=WinXP 5.1 2600 (Service Pack 2)
|
||||||
|
ProcessorNameString=Intel(R) Xeon(TM) CPU 2.40GHz
|
||||||
|
ComputerRAM=1534 MB
|
||||||
|
ProjectDrive=C:\ (9.99 GB Free)
|
||||||
|
DateTime=01-AUG-2007 21:17:19
|
||||||
|
OutputType=EXE
|
||||||
|
Language=ENGLISH
|
||||||
|
License=PRO
|
||||||
|
|
||||||
|
[Project]
|
||||||
|
ProjectName=NeoStats
|
||||||
|
ProjectDirectory=C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\tools\
|
||||||
|
NonSFXDirectory=C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\tools\\NonSFX
|
||||||
|
MediaFileName=NeoStats-Setup
|
||||||
|
CopyMediaToFName=\\tsclient\Fish\Users\justin\Documents\downloads\NeoStats-Setup.exe
|
||||||
|
ProgramDescriptiveName=NeoStats IRC Services
|
||||||
|
ProgramVersion=3.0.3.0
|
||||||
|
CompanyName=NeoStats
|
||||||
|
ProgVerLiveUpdate=1
|
||||||
|
RegisterAsApp=1
|
||||||
|
LanguageFlag=1
|
||||||
|
LanguageNames=|
|
||||||
|
UseNonSFXDir=0
|
||||||
|
ClrNonSFXDir=0
|
||||||
|
BuildNonSFXTree=0
|
||||||
|
CompressNonSFXFiles=0
|
||||||
|
ForceCopyNonSFXFiles=0
|
||||||
|
CompressionLevel=0
|
||||||
|
SetupWillExpire=0
|
||||||
|
ExpireByDate=0
|
||||||
|
ExpireByDays=1
|
||||||
|
ExpireDate=2007-08-01
|
||||||
|
ExpireDays=90
|
||||||
|
SpanCDs=0
|
||||||
|
SpanCDsSize=650
|
||||||
|
DebugWindow=0
|
||||||
|
DebugOnThisPC=1
|
||||||
|
DebugOnEveryPC=0
|
||||||
|
|
||||||
|
[Language]
|
||||||
|
|
||||||
|
[LanguageShortcut]
|
||||||
|
|
||||||
|
[LanguageCustomDLG]
|
||||||
|
|
||||||
|
[Display]
|
||||||
|
AddSetupBackground=1
|
||||||
|
SetupBackground3D=1
|
||||||
|
TopLabel=1
|
||||||
|
TopLabelVer=1
|
||||||
|
TopLabel2=0
|
||||||
|
BottomLabel=1
|
||||||
|
TopLabelText="NeoStats IRC Services"
|
||||||
|
TopLabel2Text=""
|
||||||
|
BottomLabelText="Copyright © 2007"
|
||||||
|
BackgroundDesign=Light Source (Left)
|
||||||
|
TopBackgroundColor=16758613
|
||||||
|
BottomBackgroundColor=11613445
|
||||||
|
AddBottomColor=1
|
||||||
|
DlgBmp3DFrame=1
|
||||||
|
DialogStyle=Modern
|
||||||
|
AddDialogBitmap=0
|
||||||
|
DialogBitmapFileName=
|
||||||
|
AddBackgroundBitmap=0
|
||||||
|
BackgroundBitmapFileName=
|
||||||
|
BackgroundBitmapLocation=|Top/Left|0|0|
|
||||||
|
AddBackgroundWave=0
|
||||||
|
BgBmpTransparent=0
|
||||||
|
BackgroundWaveFileName=
|
||||||
|
BackgroundWaveLocation=|Center|300|0|
|
||||||
|
BackgroundWaveLoop=1
|
||||||
|
BackgroundWaveDelay=0
|
||||||
|
AddBackgroundWaveSlider=1
|
||||||
|
BackgroundWaveSliderType=Fixed
|
||||||
|
TopLabelSide=Left
|
||||||
|
TopLabel2Side=Left
|
||||||
|
BottomLabelSide=Left
|
||||||
|
DialogLocation=|Center|0|0|
|
||||||
|
TopLabelFont=|Tahoma|32|16777215|1|0|1|0|
|
||||||
|
TopLabel2Font=|Tahoma|16|16777215|1|0|1|0|
|
||||||
|
BottomLabelFont=|Tahoma|10|16777215|1|0|1|0|
|
||||||
|
CompanyUrl=http://www.neostats.net/
|
||||||
|
|
||||||
|
[TargetExe]
|
||||||
|
TargetDirectory=<ProgramFilesDir>NeoStats
|
||||||
|
CommonDirectory=<CommonFilesDir>NeoStats
|
||||||
|
AuxDirectory=<RunTimeDir_1>Modules
|
||||||
|
TargetExeName=<Application Folder>\neostats.exe
|
||||||
|
|
||||||
|
[Dialogs]
|
||||||
|
SelectedDialogs=*Welcome,*License,Readme,User Information,Setup Type,*Custom,*Destination,Associate,*Shortcuts,*Confirm Setup,*Copy Files,*Complete
|
||||||
|
LicenseTextFile=C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\COPYING
|
||||||
|
ReadmeTextFile=
|
||||||
|
ReadmeTextFile2=C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\README
|
||||||
|
UseNotepad=0
|
||||||
|
SpaceReqOnDriveCheckBox=0
|
||||||
|
SpaceReqOnDrive=
|
||||||
|
RequestUserName=1
|
||||||
|
RequestCompanyName=1
|
||||||
|
RequestSerialNumberAlso=0
|
||||||
|
MandatoryUserName=1
|
||||||
|
MandatoryCompanyName=1
|
||||||
|
MandatorySerialNumber=1
|
||||||
|
FromPcUserName=0
|
||||||
|
FromPcCompanyName=0
|
||||||
|
RequestSerialCheckDLL=0
|
||||||
|
SerialCheckDll=
|
||||||
|
RequestPredefinedSerial=0
|
||||||
|
CaseSensitiveSerial=0
|
||||||
|
RequestTokenizedSerial=0
|
||||||
|
CDSetup=0
|
||||||
|
ShowCompactSetupAlso=1
|
||||||
|
ForcePartialSetup=0
|
||||||
|
ShowProgBar2=1
|
||||||
|
SilentSetup=0
|
||||||
|
EnableCancelButton=1
|
||||||
|
HiddenSetup=0
|
||||||
|
ProposeReadme=1
|
||||||
|
ProposeLaunch=1
|
||||||
|
ProposeRestart=0
|
||||||
|
ProposeReadmeChecked=1
|
||||||
|
ProposeLaunchChecked=0
|
||||||
|
ForceRestart=0
|
||||||
|
ShowCloseRecommendation=0
|
||||||
|
ShowAdwareDisclaimer=0
|
||||||
|
ShowCopyrightWarning=1
|
||||||
|
|
||||||
|
[Shortcuts]
|
||||||
|
AddMainShortCut=1
|
||||||
|
ForceRemoveShortcutFolder=0
|
||||||
|
ProgramLinkFolder=NeoStats IRC Services
|
||||||
|
ProgramLinkName=Neostats
|
||||||
|
ProgramLinkParam=
|
||||||
|
ProgramLinkWorkDir=<Application Folder>
|
||||||
|
ProgramLinkRun=Normal Window
|
||||||
|
ProgramLinkIconFile=
|
||||||
|
ProgramLinkIconNum=0
|
||||||
|
StartMenuLinkName=NeoStats IRC Services
|
||||||
|
DesktopLinkName=NeoStats IRC Services
|
||||||
|
SendToLinkName=NeoStats IRC Services
|
||||||
|
StartUpLinkName=NeoStats IRC Services
|
||||||
|
QuickLaunchLinkName=NeoStats IRC Services
|
||||||
|
StartMenuCheckBox=0
|
||||||
|
DesktopCheckBox=0
|
||||||
|
SendToCheckBox=0
|
||||||
|
StartUpCheckBox=1
|
||||||
|
QuickLaunchCheckBox=0
|
||||||
|
StartMenuChecked=1
|
||||||
|
DesktopChecked=1
|
||||||
|
SendToChecked=1
|
||||||
|
StartUpChecked=1
|
||||||
|
QuickLaunchChecked=1
|
||||||
|
SetAllUsers=1
|
||||||
|
SelectedByEndUser=1
|
||||||
|
AddUninstallShortcut=1
|
||||||
|
UnInstallSubFolder=0
|
||||||
|
UnInstallSubFolderText=
|
||||||
|
|
||||||
|
[Billboard]
|
||||||
|
AddBillboard=1
|
||||||
|
Item-000=|1|0|0|1|0|Center|0|0|8388608|16711680|Verdana|14|16777215|1|0|360|360|0|1|0|1|
|
||||||
|
|
||||||
|
[SplitSetup]
|
||||||
|
SplitSetup=0
|
||||||
|
ForceDownload=1
|
||||||
|
DownloadURL_SPLIT=http://
|
||||||
|
ConfirmSplitDownload=0
|
||||||
|
|
||||||
|
[AutoUpdate]
|
||||||
|
AutoUpdate=0
|
||||||
|
CheckAUSetupEnd=0
|
||||||
|
RunAutoUpdate=1
|
||||||
|
AddAutoUpdateShortcut=1
|
||||||
|
AutoUpdateLog=0
|
||||||
|
AutoUpdateSubFolder=0
|
||||||
|
AutoUpdateSubFolderText=
|
||||||
|
ReqConfirmDownload=1
|
||||||
|
ReqConfirmInstall=1
|
||||||
|
ShutDownMethod=Issue a Message Box
|
||||||
|
BackgroundUpdate=0
|
||||||
|
RestartProcess=1
|
||||||
|
InformFinish=1
|
||||||
|
UpdateProjectFName=NeoStats Version Check
|
||||||
|
DownloadURL_UPDATE=http://www.neostats.net/update
|
||||||
|
NameOfUpdateFile=
|
||||||
|
RunningProcess=<Application Folder>\neostats.exe
|
||||||
|
VersionOriginal=1
|
||||||
|
ValidVersions=
|
||||||
|
VersionNew=1
|
||||||
|
ReAskDays=0
|
||||||
|
AutoUpdateProbeSpin=1
|
||||||
|
AutoUpdateProbeText=Only at Agent Start
|
||||||
|
SelectInformFile=1
|
||||||
|
DownloadUrlInform=1
|
||||||
|
DownloadURL_INFORM=http://
|
||||||
|
NameOfInformFile=
|
||||||
|
UpdateSetupPageIndex=0
|
||||||
|
AutoInformW=360
|
||||||
|
AutoInformH=360
|
||||||
|
|
||||||
|
[Switches]
|
||||||
|
OperatingSystems=2000,XP,2003,Vista
|
||||||
|
OverwriteFlag=1
|
||||||
|
CreateLogFile=0
|
||||||
|
ConfirmExtract=0
|
||||||
|
ShowActivityBar=0
|
||||||
|
TestAdminRights=1
|
||||||
|
TestAdminRightsUnInstall=1
|
||||||
|
SetAllowFullAccess=1
|
||||||
|
TestDotNetFramework=0
|
||||||
|
InstallDotNetFx=0
|
||||||
|
InstallDotNetFxText=
|
||||||
|
InstallDotNetFxUrl=0
|
||||||
|
InstallDotNetFxUrlText=http://
|
||||||
|
DotNetFrameworkReqVer=1.0,1.1,2.0
|
||||||
|
TestExeBeforeInstall=0
|
||||||
|
TestExeBeforeUnInstall=1
|
||||||
|
AutorunCreateInfFile=0
|
||||||
|
AutorunTest=0
|
||||||
|
AutorunStartApp=0
|
||||||
|
AddAppToRunOnce=0
|
||||||
|
AddAppToRun=0
|
||||||
|
IfPreviousInstallationFound=0
|
||||||
|
PreviousInstallationOp=UnInstall before Setup start
|
||||||
|
UnInstallPreviousMode=Silent
|
||||||
|
CreateUnInstall=1
|
||||||
|
ScrambleUnInstallData=0
|
||||||
|
SilentUnInstall=0
|
||||||
|
HiddenUnInstall=0
|
||||||
|
HideErrMsgUnInstall=0
|
||||||
|
HideLogBtnUnInstall=0
|
||||||
|
AddRemoveProgramsUnInstall=1
|
||||||
|
AddChangeButtonUnInstall=0
|
||||||
|
UnInstallExeStampSwitch=0
|
||||||
|
UnInstallExeStamp=
|
||||||
|
UnInstallExeDirSwitch=0
|
||||||
|
UnInstallExeDir=
|
||||||
|
|
||||||
|
[UnInstall]
|
||||||
|
UnInstallDisplayName=NeoStats IRC Services
|
||||||
|
UnInstallDisplayIcon=
|
||||||
|
UnInstallDisplayIconNum=
|
||||||
|
UnInstallHelpLink=
|
||||||
|
UnInstallInfoAboutURL=
|
||||||
|
|
||||||
|
[Registry]
|
||||||
|
|
||||||
|
[IniFile]
|
||||||
|
|
||||||
|
[Environment]
|
||||||
|
|
||||||
|
[Association]
|
||||||
|
OpenWith=0
|
||||||
|
OpenWithName=
|
||||||
|
OpenWithMenuText=Open with
|
||||||
|
OpenWithExtensions=
|
||||||
|
|
||||||
|
[VerInfo]
|
||||||
|
CopyFromExe=1
|
||||||
|
DefineManually=0
|
||||||
|
Item-001=|Comments||
|
||||||
|
Item-002=|CompanyName|NeoStats|
|
||||||
|
Item-003=|FileDescription|NeoStats IRC Services|
|
||||||
|
Item-004=|FileVersion|3,0,b3,0|
|
||||||
|
Item-005=|InternalName|neostats.exe|
|
||||||
|
Item-006=|LegalCopyright||
|
||||||
|
Item-007=|LegalTrademarks||
|
||||||
|
Item-008=|OriginalFilename|neostats.exe|
|
||||||
|
Item-009=|ProductName|NeoStats IRC Services|
|
||||||
|
Item-010=|ProductVersion|3,0,b3,0|
|
||||||
|
CopyIconFromTargetExe=1
|
||||||
|
CopyIconFromOtherApp=0
|
||||||
|
OtherIconAppFileName=
|
||||||
|
Spin1=0
|
||||||
|
Spin2=0
|
||||||
|
|
||||||
|
[Execute]
|
||||||
|
ExecuteDllCheckBox=0
|
||||||
|
ExecutionDllFileName=
|
||||||
|
|
||||||
|
[MSI]
|
||||||
|
Version=1
|
||||||
|
AddMergeModule=0
|
||||||
|
Msm2MsiData=|MSM2MSI_NeoStats-Setup.msi|1|1|1|0|
|
||||||
|
|
||||||
|
[GroupNames]
|
||||||
|
Group-000=Main Group
|
||||||
|
|
||||||
|
[Group-000]
|
||||||
|
TypicalCompactData=15
|
||||||
|
Description=This is the main group of files
|
||||||
|
SizeInKB=0
|
||||||
|
Item-000=Fol*<Application Folder>
|
||||||
|
Item-001=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\neostats.conf
|
||||||
|
Item-002=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\neostats.exe
|
||||||
|
Item-003=Dir*<Application Folder>\data
|
||||||
|
Item-004=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\data\tlds.nfo
|
||||||
|
Item-005=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\data\niconfig.db
|
||||||
|
Item-006=Dir*<Application Folder>\logs
|
||||||
|
Item-007=Dir*<Application Folder>\modules
|
||||||
|
Item-008=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\unreal32.dll
|
||||||
|
Item-009=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\unreal31.dll
|
||||||
|
Item-010=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\ultimate3.dll
|
||||||
|
Item-011=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\ultimate2.dll
|
||||||
|
Item-012=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\textserv.dll
|
||||||
|
Item-013=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\templateauth.dll
|
||||||
|
Item-014=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\template.dll
|
||||||
|
Item-015=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\statserv.dll
|
||||||
|
Item-016=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\quoteserv.dll
|
||||||
|
Item-017=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\plexus.dll
|
||||||
|
Item-018=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\operlog.dll
|
||||||
|
Item-019=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\nefarious.dll
|
||||||
|
Item-020=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\limitserv.dll
|
||||||
|
Item-021=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\ircup10.dll
|
||||||
|
Item-022=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\ircdauth.dll
|
||||||
|
Item-023=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\hybrid7.dll
|
||||||
|
Item-024=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\hybrid6.dll
|
||||||
|
Item-025=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\hostserv.dll
|
||||||
|
Item-026=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\gdbm.dll
|
||||||
|
Item-027=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\extauth.dll
|
||||||
|
Item-028=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\dccpartyline.dll
|
||||||
|
Item-029=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\connectserv.dll
|
||||||
|
Item-030=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\client.dll
|
||||||
|
Item-031=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\bahamut18.dll
|
||||||
|
Item-032=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\bahamut14.dll
|
||||||
|
Item-033=Fil*C:\Documents and Settings\Justin\My Documents\NeoStats\Neo30\NeoStats3.0\modules\asuka.dll
|
||||||
|
|
18
tools/buildwin32snap.bat
Normal file
18
tools/buildwin32snap.bat
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
@echo off
|
||||||
|
call vsvars32.bat
|
||||||
|
c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\MSBuild.exe neostatslibs.sln /p:Configuration=Release
|
||||||
|
c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\MSBuild.exe neostats.sln /p:Configuration=Release
|
||||||
|
mkdir NeoStats3.0
|
||||||
|
cd NeoStats3.0
|
||||||
|
mkdir logs
|
||||||
|
mkdir data
|
||||||
|
mkdir modules
|
||||||
|
@copy ..\src\Release\NeoStats.exe .
|
||||||
|
@copy ..\modules\*.dll modules
|
||||||
|
@copy ..\data\*.* data
|
||||||
|
@copy ..\README .
|
||||||
|
@copy ..\COPYING .
|
||||||
|
@copy ..\src\win32\neostats.conf .
|
||||||
|
cd ..
|
||||||
|
c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\MSBuild.exe neostatslibs.sln /p:Configuration=Release /t:Cleanrem
|
||||||
|
c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\MSBuild.exe neostats.sln /p:Configuration=Release /t:Clean
|
Reference in a new issue