原创
WIN CE开机运行校正程序
2007-11-13 23:22
3516
5
5
分类:
汽车电子
在PB工程下加入一个console project
#include "stdafx.h"
#include "Pwinuser.h"
extern BOOL WINAPI TouchCalibrate(void);
int main(int argc, char *argv[], char *envp[])
{
TouchCalibrate();
return 0;
}
修改Project Specific Files下的
project.reg :
[HKEY_LOCAL_MACHINE\init]
"Launch80"="tchcal.exe"
这样,开机就能运行这个程序了。
编译的时候可能提示找不到"Pwinuser.h",直接拷贝这个文件过来就好了。
文章评论(0条评论)
登录后参与讨论