Commit ebb85183 authored by garciay's avatar garciay
Browse files

Add external function fx_getDSecond()

parent 29523a83
......@@ -139,6 +139,19 @@ module LibItsCommon_Functions {
return v_minuteOfTheYear;
}
/**
* @desc Gets the milliseconds point in the current UTC minute
* @return DSecond - The milliseconds point in the current UTC minute (0..60000)
*/
function f_getDSecond() return DSecond {
var DSecond v_dSecond := 0;
// log("*** f_getDSecond: INFO: calling fx_getDSecond() ***");
v_dSecond := fx_getDSecond();
return v_dSecond;
}
} // end generalFunctions
group itsFunctions {
......@@ -223,6 +236,12 @@ module LibItsCommon_Functions {
*/
external function fx_getMinuteOfTheYear() return UInt16;
/**
* @desc Gets the milliseconds point in the current UTC minute
* @return DSecond - the milliseconds point in the current UTC minute
*/
external function fx_getDSecond() return UInt16;
/**
* @desc External function to compute distance between two points
* @param p_latitudeA Latitude of first point
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment