Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
b2f63a26
Kaydet (Commit)
b2f63a26
authored
Haz 25, 2017
tarafından
Chris Sherlock
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
osl: document and group code via doxygen
Change-Id: I9945df95e14fbca47f7cea80b1d4097d00a3eb54
üst
61fc3ed1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
11 deletions
+23
-11
file.h
include/osl/file.h
+23
-11
No files found.
include/osl/file.h
Dosyayı görüntüle @
b2f63a26
...
@@ -314,19 +314,26 @@ SAL_DLLPUBLIC sal_Bool SAL_CALL osl_identicalDirectoryItem(
...
@@ -314,19 +314,26 @@ SAL_DLLPUBLIC sal_Bool SAL_CALL osl_identicalDirectoryItem(
oslDirectoryItem
pItemA
,
oslDirectoryItem
pItemA
,
oslDirectoryItem
pItemB
);
oslDirectoryItem
pItemB
);
/* File types */
/**
@defgroup File types
*/
typedef
enum
{
typedef
enum
{
osl_File_Type_Directory
,
osl_File_Type_Directory
,
/*< directory */
osl_File_Type_Volume
,
osl_File_Type_Volume
,
/*< volume (e.g. C:, A:) */
osl_File_Type_Regular
,
osl_File_Type_Regular
,
/*< regular file */
osl_File_Type_Fifo
,
osl_File_Type_Fifo
,
/*< named pipe */
osl_File_Type_Socket
,
osl_File_Type_Socket
,
/*< socket */
osl_File_Type_Link
,
osl_File_Type_Link
,
/*< file link */
osl_File_Type_Special
,
osl_File_Type_Special
,
/*< special device file */
osl_File_Type_Unknown
osl_File_Type_Unknown
/*< unknown file type */
}
oslFileType
;
}
oslFileType
;
/** @} */
/**
@defgroup File attributes
/* File attributes */
@{
*/
#define osl_File_Attribute_ReadOnly 0x00000001
#define osl_File_Attribute_ReadOnly 0x00000001
#define osl_File_Attribute_Hidden 0x00000002
#define osl_File_Attribute_Hidden 0x00000002
#define osl_File_Attribute_Executable 0x00000010
#define osl_File_Attribute_Executable 0x00000010
...
@@ -339,9 +346,13 @@ typedef enum {
...
@@ -339,9 +346,13 @@ typedef enum {
#define osl_File_Attribute_OthWrite 0x00000800
#define osl_File_Attribute_OthWrite 0x00000800
#define osl_File_Attribute_OthRead 0x00001000
#define osl_File_Attribute_OthRead 0x00001000
#define osl_File_Attribute_OthExe 0x00002000
#define osl_File_Attribute_OthExe 0x00002000
/** @} */
/* Flags specifying which fields to retrieve by osl_getFileStatus */
/**
@defgroup Flags specifying which fields to retrieve by osl_getFileStatus
@{
*/
#define osl_FileStatus_Mask_Type 0x00000001
#define osl_FileStatus_Mask_Type 0x00000001
#define osl_FileStatus_Mask_Attributes 0x00000002
#define osl_FileStatus_Mask_Attributes 0x00000002
#define osl_FileStatus_Mask_CreationTime 0x00000010
#define osl_FileStatus_Mask_CreationTime 0x00000010
...
@@ -353,6 +364,7 @@ typedef enum {
...
@@ -353,6 +364,7 @@ typedef enum {
#define osl_FileStatus_Mask_LinkTargetURL 0x00000400
#define osl_FileStatus_Mask_LinkTargetURL 0x00000400
#define osl_FileStatus_Mask_All 0x7FFFFFFF
#define osl_FileStatus_Mask_All 0x7FFFFFFF
#define osl_FileStatus_Mask_Validate 0x80000000
#define osl_FileStatus_Mask_Validate 0x80000000
/** @} */
/** Structure containing information about files and directories
/** Structure containing information about files and directories
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment