Displaying 1 result from an estimated 1 matches for "lpbool".
Did you mean:
  lp_bool
  
2008 Sep 10
1
peimg /inf running on wine
...n into
 * the "ex" version of the method and calls the CopyFile method.
 * It will have to be fixed eventually.
 */
BOOL WINAPI PrivCopyFileExW(LPCWSTR sourceFilename, LPCWSTR destFilename,
                        LPPROGRESS_ROUTINE progressRoutine, LPVOID appData,
                        LPBOOL cancelFlagPointer, DWORD copyFlags)
{
    /*
     * Interpret the only flag that CopyFile can interpret.
     */
    FIXME("src=%s dest=%s prg=0x%08x data=0x%08x flags=0x%08x\n", debugstr_w(sourceFilename), debugstr_w(destFilename), progressRoutine, appData, copyFlags);
    return CopyFil...