-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy patharchivefunc.h
35 lines (28 loc) · 966 Bytes
/
archivefunc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*############################################################################
## NEONCUBE - RAGNAROK ONLINE PATCH CLIENT (GNU General Public License)
##
## http://openkore.sourceforge.net/neoncube
## (c) 2005 Ansell "Cliffe" Cruz ([email protected])
##
##############################################################################*/
#pragma once
LPTSTR
GetFolder(/* [in] */ LPCTSTR source, /* [in] */ INT index);
INT
CountFolders(/* [in] */ LPCTSTR source);
/*#######################################################
## FUNCTION: Delete a directory and its contents
##
## return value: FALSE if an error occured.
########################################################*/
BOOL
DeleteDirectoryA(/* [in] */ LPCSTR lpszDir);
BOOL
DeleteDirectoryW(/* [in] */ LPCWSTR lpszDir);
#ifdef UNICODE
#define DeleteDirectory(dir) DeleteDirectoryW(dir)
#else
#define DeleteDirectory(dir) DeleteDirectoryA(dir)
#endif
LPCTSTR
GetFileExt(/* [in] */ LPCTSTR fname);