Desktop Functions: Smart Device Functions:
|
Search Results for "GetDateFormat" in [All]kernel32
static extern int GetDateFormat(uint locale, uint dwFlags, ref SystemTime date, string format, StringBuilder sb, int sbSize);
static extern int GetDateFormat(int locale, uint dwFlags, ref SystemTime sysTime,
int res = GetDateFormat(locale, 0, ref st, format, sb, sb.Capacity);
res = GetDateFormat(locale, 0, ref st, format, sb, 0);
res = GetDateFormat(locale, 0, ref st, format, sb, sb.Capacity); (see sample code for GetDateFormat()) |