Convert solution to VC 2010 and fix couple of warnings. More verbose some post-build dist create scripts

This commit is contained in:
alexey.min
2012-02-01 07:20:48 +00:00
parent 03de3bdc95
commit 91cf69734c
16 changed files with 2043 additions and 33 deletions

View File

@@ -29,7 +29,9 @@ int base64_encode_block(const char* plaintext_in, int length_in, char* code_out,
switch (state_in->step)
{
#pragma warning( disable: 4127 ) // conditional expression is constant
while (1)
#pragma warning( default: 4127 ) // conditional expression is constant
{
case step_A:
if (plainchar == plaintextend)
@@ -127,7 +129,9 @@ int base64_decode_block(const char* code_in, const int length_in, char* plaintex
switch (state_in->step)
{
#pragma warning( disable: 4127 ) // conditional expression is constant
while (1)
#pragma warning( default: 4127 ) // conditional expression is constant
{
case step_a:
do {