Convert solution to VC 2010 and fix couple of warnings. More verbose some post-build dist create scripts
This commit is contained in:
@@ -9,7 +9,9 @@ rem echo 2 = %2
|
||||
set out=..\..\out\dist_l2c
|
||||
|
||||
rem Copy DLL
|
||||
echo Copy DLL %2\%1.dll - %2\%out%
|
||||
copy /y %2\%1.dll %2\%out%
|
||||
|
||||
rem Copy PDB
|
||||
echo Copy PDB %2\%1.pdb - %2\%out%
|
||||
copy /y %2\%1.pdb %2\%out%
|
||||
|
@@ -70,7 +70,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)
|
||||
@@ -168,7 +170,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 {
|
||||
|
Reference in New Issue
Block a user