VirtualBox

source: vbox/trunk/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/dos.h

最後變更 在這個檔案是 53201,由 vboxsync 提交於 10 年 前

Devices/Main: vmsvga updates

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 993 位元組
 
1/*
2 * DOS definitions
3 *
4 * Derived from the mingw header written by Colin Peters.
5 * Modified for Wine use by Jon Griffiths and Francois Gouget.
6 * This file is in the public domain.
7 */
8#ifndef __WINE_DOS_H
9#define __WINE_DOS_H
10
11#include <crtdefs.h>
12
13#include <pshpack8.h>
14
15/* The following are also defined in io.h */
16#define _A_NORMAL 0x00000000
17#define _A_RDONLY 0x00000001
18#define _A_HIDDEN 0x00000002
19#define _A_SYSTEM 0x00000004
20#define _A_VOLID 0x00000008
21#define _A_SUBDIR 0x00000010
22#define _A_ARCH 0x00000020
23
24#ifndef _DISKFREE_T_DEFINED
25#define _DISKFREE_T_DEFINED
26struct _diskfree_t {
27 unsigned int total_clusters;
28 unsigned int avail_clusters;
29 unsigned int sectors_per_cluster;
30 unsigned int bytes_per_sector;
31};
32#endif /* _DISKFREE_T_DEFINED */
33
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
39unsigned int __cdecl _getdiskfree(unsigned int, struct _diskfree_t *);
40
41#ifdef __cplusplus
42}
43#endif
44
45
46#define diskfree_t _diskfree_t
47
48#include <poppack.h>
49
50#endif /* __WINE_DOS_H */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette