GetCurrentDirectory 函数怎么用         LPTSTR lpBuffer;
DWORD ldLen;
GetCurrentDirectory(ldLen,lpBuffer); MessageBox(lpBuffer);
这段代码怎么不弹出提示:
并且有两个警告:
warning C4700: local variable 'lpBuffer' used without having been initialized
warning C4700: local variable 'ldLen' used without having been 
initialized