Is there a way to determine the timezone of a DATE data type that has been converted to a SystemTime value?
Let say a C# file using the COM lib set the value below:
someComInterface.someDateAttribute = new DateTime(somedate).ToUniversalTime();
In the COM library I want to do something like this
if(VariantTimeToSystemTime(DATE, &systm )){
if(st == UTC ){
//do something
}
else{
// do something with localtime
}
}