首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
RegDataToDataType
】的更多相关文章
RegDataToDataType
function RegDataToDataType(Value: TRegDataType): Integer; begin case Value of rdString: Result := REG_SZ; rdExpandString: Result := REG_EXPAND_SZ; rdInteger: Result := REG_DWORD; rdBinary: Result := REG_BINARY; else Result := REG_NONE; end; end;…