The Windows counterpart to 'wrapround of thread delays'
[haskell-directory.git] / include / dirUtils.h
1 /* 
2  * (c) The University of Glasgow 2002
3  *
4  * Directory Runtime Support
5  */
6 #ifndef __DIRUTILS_H__
7 #define __DIRUTILS_H__
8
9 extern HsInt __hscore_readdir(HsAddr dirPtr, HsAddr pDirEnt);
10 extern HsInt __hscore_renameFile(HsAddr src, HsAddr dest);
11
12 #if defined(_MSC_VER) || defined(__MINGW32__) || defined(_WIN32)
13 extern int __hscore_getFolderPath(HWND hwndOwner,
14                                   int nFolder,
15                                   HANDLE hToken,
16                                   DWORD dwFlags,
17                                   char*  pszPath);
18 #endif
19
20 #endif /* __DIRUTILS_H__ */