mirror of https://github.com/wolfSSL/wolfssh.git
Export Windows Function Wrappers
Retag the WS_FindFirstFileA() and WS_FindNextFileA() functions as WOLFSSH_API, not just local. They are used in the example SFTP client.pull/960/head
parent
f0c17282bc
commit
444aa0f08a
|
|
@ -480,10 +480,10 @@ extern "C" {
|
|||
unsigned long desiredAccess, unsigned long shareMode,
|
||||
unsigned long creationDisposition, unsigned long flags,
|
||||
void* heap);
|
||||
WOLFSSH_LOCAL void* WS_FindFirstFileA(const char* fileName,
|
||||
WOLFSSH_API void* WS_FindFirstFileA(const char* fileName,
|
||||
char* realFileName, size_t realFileNameSz, int* isDir,
|
||||
void* heap);
|
||||
WOLFSSH_LOCAL int WS_FindNextFileA(void* findHandle,
|
||||
WOLFSSH_API int WS_FindNextFileA(void* findHandle,
|
||||
char* realFileName, size_t realFileNameSz);
|
||||
WOLFSSH_LOCAL int WS_GetFileAttributesExA(const char* fileName,
|
||||
void* fileInfo, void* heap);
|
||||
|
|
|
|||
Loading…
Reference in New Issue