我想调用一个函数,函数的参数定义如下
typedef USHORT *PUSHORT;
void f(PUSHORT const pStringLen);
{
    dosomething;
}我在调用时应该怎么写这个实参啊;
我现在这样调用,f(128);
结果给出错误是:D:\Code of Record\My Code\AiRecord\MyFunctions.cpp(29) : error C2664: 'MTGetCallerID' : cannot convert parameter 2 from 'const int' to 'unsigned short *const '
        Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast
Error executing cl.exe.
请问我应该怎么作这个类型转换后才能使之匹配