请问驱动中怎么写lib程序?我其中只有一个函数
int test(int aaa, int bbb)
{
  int ccc;
  ccc = aaa + bbb;
  return ccc;
}我该怎么做呢?
我想用wdk直接编译.