星期一, 四月 28, 2014
星期四, 四月 10, 2014
Mdtool 出现Add-in scan operation failed
运行mdtool出现错误:
Add-in scan operation failed.
ERROR: The add-in database could not be updated. It may be due to file corruption. Try running the setup repair utility
这个是由于安装Unity在网络盘造成的问题,
.net 4.0之后,需要在mdtool.exe.config加入:Add-in scan operation failed.
ERROR: The add-in database could not be updated. It may be due to file corruption. Try running the setup repair utility
这个是由于安装Unity在网络盘造成的问题,
....
<loadFromRemoteSources enabled="true"/>
星期二, 四月 08, 2014
Window Remote Desktop Custome Width and Heigth?
Window 远程桌面设定指定的宽和高.
通过选项里拖拉到最大全屏只能是让远程桌面最大和本地桌面一样大。
如果远程桌面的尺寸比较大,可以通过命令行启动参数来制定远程窗口最大的
宽和高:
mstsc /h:1080 /w:1920
通过选项里拖拉到最大全屏只能是让远程桌面最大和本地桌面一样大。
如果远程桌面的尺寸比较大,可以通过命令行启动参数来制定远程窗口最大的
宽和高:
mstsc /h:1080 /w:1920
星期五, 四月 04, 2014
C如何得到当前时间时间戳用微秒
最简单代码。
#include <sys/time.h>
#include <inttypes.h>
uint64_t getCurrentTimestamp()
{
struct timeval tv;
gettimeofday(&tv,NULL);
printf("%d raw microseconds:\n",tv.tv_usec);
uint64_t time_in_micros =( (uint64_t)1000 * (tv.tv_sec) )+ tv.tv_usec/1000;
printf("%" PRIu64 " real microseconds:\n",time_in_micros);
return time_in_micros;
}
#include <sys/time.h>
#include <inttypes.h>
uint64_t getCurrentTimestamp()
{
struct timeval tv;
gettimeofday(&tv,NULL);
printf("%d raw microseconds:\n",tv.tv_usec);
uint64_t time_in_micros =( (uint64_t)1000 * (tv.tv_sec) )+ tv.tv_usec/1000;
printf("%" PRIu64 " real microseconds:\n",time_in_micros);
return time_in_micros;
}
订阅:
博文 (Atom)