DCL 4.0
Loading...
Searching...
No Matches
Dir.cpp File Reference
#include <dcl/Config.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <dcl/_string.h>
#include <dcl/_stat.h>
#include <dcl/Charset.h>
#include <dcl/Dir.h>
#include "__strumbs.h"

Go to the source code of this file.

Macros

#define INVALID_HANDLE_VALUE   ((DIR*)-1)

Functions

 IMPLEMENT_CLASSINFO (Dir, Object) Dir

Macro Definition Documentation

◆ INVALID_HANDLE_VALUE

#define INVALID_HANDLE_VALUE   ((DIR*)-1)

Definition at line 31 of file Dir.cpp.

Function Documentation

◆ IMPLEMENT_CLASSINFO()

IMPLEMENT_CLASSINFO ( Dir ,
Object  )

Definition at line 34 of file Dir.cpp.

37{
38 memset(this, 0,
39#if __DCL_WINDOWS
40 sizeof(WIN32_FIND_DATAW)
41#else
42 sizeof(struct dirent)
43#endif
44 );
45}