On Wed, 2 Apr 2003, Shawn Anderson wrote:

> MAIL_ROOT="\\?\c:\MailRoot"

Could someone please try the above trick plus using this :


char           *SysGetTmpFile(char *pszFileName)
{

    char            szTmpPath[SYS_MAX_PATH] = "";

    GetTempPath(sizeof(szTmpPath) - 1, szTmpPath);

    static unsigned int uFileSeqNr = 0;
    SYS_LONGLONG    llFileID = (((SYS_LONGLONG) GetCurrentThreadId()) << 32) | 
(SYS_LONGLONG) ++uFileSeqNr;

    SysSNPrintf(pszFileName, SYS_MAX_PATH - 1, "\\\\?\\%smsrv%I64x.tmp",
                szTmpPath, llFileID);

    return (pszFileName);

}


inside SysDepWin.cpp





- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]

Reply via email to