~ubuntu-branches/ubuntu/precise/wine1.3/precise

« back to all changes in this revision

Viewing changes to include/msvcrt/io.h

  • Committer: Package Import Robot
  • Author(s): Scott Ritchie
  • Date: 2012-01-17 09:00:34 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120117090034-eyhpp02jawlvrrkc
Tags: 1.3.37-0ubuntu1
* New upstream release
  - Many changes
* Convert to 3.0 source format
* debian/control:
  - Remove pre-multiarch amd64 build depends
  - Remove quilt build depends
  - Recommend proper gecko versions
* debian/rules:
  - Remove manual dh_quilt patch and unpatch
  - No need to uuencode/uudecode anymore with new source format

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
  __int64 DECLSPEC_ALIGN(8) size;
48
48
  char           name[260];
49
49
};
 
50
 
 
51
struct _finddata64_t
 
52
{
 
53
  unsigned attrib;
 
54
  __time64_t time_create;
 
55
  __time64_t time_access;
 
56
  __time64_t time_write;
 
57
  __int64 DECLSPEC_ALIGN(8) size;
 
58
  char           name[260];
 
59
};
50
60
#endif /* _FINDDATA_T_DEFINED */
51
61
 
52
62
#ifndef _WFINDDATA_T_DEFINED
88
98
int         __cdecl _findclose(intptr_t);
89
99
intptr_t    __cdecl _findfirst(const char*,struct _finddata_t*);
90
100
intptr_t    __cdecl _findfirsti64(const char*, struct _finddatai64_t*);
 
101
intptr_t    __cdecl _findfirst64(const char*, struct _finddata64_t*);
91
102
int         __cdecl _findnext(intptr_t,struct _finddata_t*);
92
103
int         __cdecl _findnexti64(intptr_t, struct _finddatai64_t*);
 
104
int         __cdecl _findnext64(intptr_t, struct _finddata64_t*);
93
105
intptr_t    __cdecl _get_osfhandle(int);
94
106
int         __cdecl _isatty(int);
95
107
int         __cdecl _locking(int,int,__msvcrt_long);