/**************/ /* dropfile.h */ /***************************************************************** Module name: Dropfile.H Programmer : Jeffrey M. Richter. Description: Drop File Server Sample Application Header File. *****************************************************************/ #ifndef DROPFILE_H #define DROPFILE_H #define UM_UPDATECAPTION (WM_USER + 0) HDROP DragCreateFiles(LPPOINT lpptMousePos,BOOL fInNonClientArea); HDROP DragAppendFile(HGLOBAL hDrop, LPCSTR szPathname); WORD GetSinglePathName (LPCSTR szFileOpenStr, int wIndex, LPSTR szPathName, WORD wMaxLen); LPCSTR MultiSelectFiles(HWND hWnd); int DropSelectFiles(HWND hWnd); int DropFiles(HWND hWnd,LPCSTR szAllFileNames); int DropListBoxFiles(HWND hWnd,UINT id,LPCSTR path); LPSTR DropFilesToString(HDROP hDrop,LPSTR s,int mb); int DropFilesToListBox(HDROP hDrop,HWND hWnd,int id,int clear); #endif