annotate loader/wine/windows.h @ 36551:a5764687ff8d

mf: Fix initial hang/delay with mf:// The mf:// type is not actually a stream, so do not try to cache its output. Otherwise the read failures will be interpreted as connection errors and our retry routine kicks in, this causing the delay.
author reimar
date Sun, 19 Jan 2014 18:42:42 +0000
parents 26f673ba0675
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26045
a8ea87c71d18 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 24422
diff changeset
1 #ifndef MPLAYER_WINDOWS_H
a8ea87c71d18 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 24422
diff changeset
2 #define MPLAYER_WINDOWS_H
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
3
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
4 #include "windef.h"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
5 #include "winbase.h"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
6 #include "winuser.h"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
7 #include "shell.h"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
8 #include "winreg.h"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
9 #include "winnetwk.h"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
10 #include "winver.h"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
11 #include "lzexpand.h"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
12 #include "shellapi.h"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
13 #include "ole2.h"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
14 #include "winnls.h"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
15 #include "objbase.h"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
16 #include "winspool.h"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
17
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
18 #if 0
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
19 Where does this belong? Nobody uses this stuff anyway.
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
20 typedef struct {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
21 BYTE i; /* much more .... */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
22 } KANJISTRUCT;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
23 typedef KANJISTRUCT *LPKANJISTRUCT;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
24 typedef KANJISTRUCT *NPKANJISTRUCT;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
25 typedef KANJISTRUCT *PKANJISTRUCT;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
26
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
27
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
28 #endif /* 0 */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
29
26045
a8ea87c71d18 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 24422
diff changeset
30 #endif /* MPLAYER_WINDOWS_H */