//ZFNUMBERTOTEXT function
//
//number to text
///////
//ZFNUMBERTOTEXT 函数
//
//数字 转换到 文本
DWORD ZFNUMBERTOTEXT (
DWORD & z_numbertotext_number_original_input_dword ,
//input :
//number : original : input : dword
///////
//数字 : 原来 (的) : 输入 : dword
DWORD & z_numbertotext_text_final_output_dword
//input :
//text : final : output : dword
///////
//文本 : 最终 (的) : 输出 : dword
)
//ZFNUMBERTOTEXT function
//
//number to text
///////
//ZFNUMBERTOTEXT 函数
//
//数字 转换到 文本
{
if (
( z_numbertotext_number_original_input_dword >= 0 )
//number : original : input : dword
//>=
//0
///////
//数字 : 原来 (的) : 输入 : dword
//>=
//0
&&
//and
///////
//并且
( z_numbertotext_number_original_input_dword <= 9 )
//number : original : input : dword
//<=
//9
///////
//数字 : 原来 (的) : 输入 : dword
//<=
//9
)
//whether
//
//0 <= ( number : original : input : dword ) <= 9
///////
//是否
//
//0 <= ( 数字 : 原来 (的) : 输入 : dword ) <= 9
{
z_numbertotext_text_final_output_dword = z_numbertotext_number_original_input_dword + 0x30 ;
//text : final : output : dword
///////
//文本 : 最终 (的) : 输出 : dword
}
return 0 ;
//funtion success
//函数 成功
}
///////
//ZFNUMBERTOTEXT function
//
//number to text
///////
//ZFNUMBERTOTEXT 函数
//
//数字 转换到 文本
static DWORD z_numbertotext_number_original_input_dword ;
//input :
//number : original : input : dword
///////
//数字 : 原来 (的) : 输入 : dword
static DWORD z_numbertotext_text_final_output_dword ;
//input :
//text : final : output : dword
///////
//文本 : 最终 (的) : 输出 : dword
没有评论:
发表评论