annotate loader/win32.c @ 235:6f96d4143806

verbose output changed
author arpi_esp
date Wed, 28 Mar 2001 21:43:21 +0000
parents 39ceb7a5a9e2
children c017b21a1990
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1 /***********************************************************
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
3 Win32 emulation code. Functions that emulate
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
4 responses from corresponding Win32 API calls.
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
5 Since we are not going to be able to load
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
6 virtually any DLL, we can only implement this
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
7 much, adding needed functions with each new codec.
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
8
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
9 Basic principle of implementation: it's not good
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
10 for DLL to know too much about its environment.
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
11
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
12 ************************************************************/
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
13
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
14 #include <config.h>
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
15
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
16 #include "win32.h"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
17 #include <stdio.h>
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
18 #include <pthread.h>
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
19 #include <errno.h>
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
20 #ifdef HAVE_MALLOC_H
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
21 #include <malloc.h>
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
22 #else
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
23 #include <stdlib.h>
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
24 #endif
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
25 #include <time.h>
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
26 #include <unistd.h>
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
27 #include <fcntl.h>
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
28 #include <sys/types.h>
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
29 #include <sys/time.h>
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
30 #include <sys/timeb.h>
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
31
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
32 #include <wine/winbase.h>
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
33 #include <wine/winreg.h>
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
34 #include <wine/winnt.h>
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
35 #include <wine/winerror.h>
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
36 #include <wine/debugtools.h>
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
37 #include <wine/module.h>
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
38
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
39 #include <registry.h>
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
40 #include <loader.h>
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
41 #include <com.h>
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
42
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
43 char* def_path=WIN32_PATH;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
44
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
45 static void do_cpuid(unsigned int *regs)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
46 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
47 unsigned int ax;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
48 ax=1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
49 __asm__ __volatile__(
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
50 "pushl %%ebx; pushl %%ecx; pushl %%edx; "
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
51 ".byte 0x0f, 0xa2;"
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
52 "movl %%eax, (%2);"
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
53 "movl %%ebx, 4(%2);"
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
54 "movl %%ecx, 8(%2);"
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
55 "movl %%edx, 12(%2);"
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
56 "popl %%edx; popl %%ecx; popl %%ebx; "
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
57 : "=a" (ax)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
58 : "0" (ax), "S" (&regs));
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
59 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
60 static unsigned int c_localcount_tsc()
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
61 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
62 int a;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
63 __asm__ __volatile__("rdtsc\n\t"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
64 :"=a"(a)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
65 :
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
66 :"edx");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
67 return a;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
68 }
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
69 static void c_longcount_tsc(long long* z)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
70 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
71 __asm__ __volatile__(
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
72 "pushl %%ebx\n\t"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
73 "movl %%eax, %%ebx\n\t"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
74 "rdtsc\n\t"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
75 "movl %%eax, 0(%%ebx)\n\t"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
76 "movl %%edx, 4(%%ebx)\n\t"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
77 "popl %%ebx\n\t"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
78 ::"a"(z));
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
79 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
80 #include <sys/time.h>
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
81 #include <unistd.h>
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
82 static unsigned int c_localcount_notsc()
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
83 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
84 struct timeval tv;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
85 unsigned limit=~0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
86 limit/=1000000;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
87 gettimeofday(&tv, 0);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
88 return limit*tv.tv_usec;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
89 }
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
90 static void c_longcount_notsc(long long* z)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
91 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
92 struct timeval tv;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
93 unsigned long long result;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
94 unsigned limit=~0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
95 if(!z)return;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
96 limit/=1000000;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
97 gettimeofday(&tv, 0);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
98 result=tv.tv_sec;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
99 result<<=32;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
100 result+=limit*tv.tv_usec;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
101 *z=result;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
102 }
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
103 static unsigned int localcount_stub();
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
104 static void longcount_stub(long long*);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
105 static unsigned int (*localcount)()=localcount_stub;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
106 static void (*longcount)(long long*)=longcount_stub;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
107
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
108 static unsigned int localcount_stub()
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
109 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
110 unsigned int regs[4];
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
111 do_cpuid(regs);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
112 if ((regs[3] & 0x00000010) == 0)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
113 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
114 localcount=c_localcount_tsc;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
115 longcount=c_longcount_tsc;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
116 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
117 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
118 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
119 localcount=c_localcount_notsc;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
120 longcount=c_longcount_notsc;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
121 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
122 return localcount();
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
123 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
124 static void longcount_stub(long long* z)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
125 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
126 unsigned int regs[4];
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
127 do_cpuid(regs);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
128 if ((regs[3] & 0x00000010) == 0)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
129 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
130 localcount=c_localcount_tsc;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
131 longcount=c_longcount_tsc;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
132 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
133 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
134 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
135 localcount=c_localcount_notsc;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
136 longcount=c_longcount_notsc;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
137 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
138 longcount(z);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
139 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
140
235
6f96d4143806 verbose output changed
arpi_esp
parents: 130
diff changeset
141 int LOADER_DEBUG=1;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
142 inline void dbgprintf(char* fmt, ...)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
143 {
235
6f96d4143806 verbose output changed
arpi_esp
parents: 130
diff changeset
144 #ifdef DETAILED_OUT
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
145 if(LOADER_DEBUG)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
146 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
147 FILE* f;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
148 va_list va;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
149 va_start(va, fmt);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
150 f=fopen("./log", "a");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
151 vprintf(fmt, va);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
152 if(f)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
153 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
154 vfprintf(f, fmt, va);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
155 fsync(fileno(f));
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
156 fclose(f);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
157 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
158 va_end(va);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
159 }
235
6f96d4143806 verbose output changed
arpi_esp
parents: 130
diff changeset
160 #endif
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
161 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
162 char export_names[500][30]={
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
163 "name1",
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
164 //"name2",
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
165 //"name3"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
166 };
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
167 //#define min(x,y) ((x)<(y)?(x):(y))
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
168
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
169 static unsigned char* heap=NULL;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
170 static int heap_counter=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
171 void test_heap()
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
172 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
173 int offset=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
174 if(heap==0)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
175 return;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
176 while(offset<heap_counter)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
177 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
178 if(*(int*)(heap+offset)!=0x433476)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
179 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
180 printf("Heap corruption at address %d\n", offset);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
181 return;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
182 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
183 offset+=8+*(int*)(heap+offset+4);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
184 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
185 for(;offset<min(offset+1000, 20000000); offset++)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
186 if(heap[offset]!=0xCC)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
187 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
188 printf("Free heap corruption at address %d\n", offset);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
189 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
190 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
191 #undef MEMORY_DEBUG
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
192
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
193 #ifdef MEMORY_DEBUG
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
194
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
195 void* my_mreq(int size, int to_zero)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
196 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
197 static int test=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
198 test++;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
199 if(test%10==0)printf("Memory: %d bytes allocated\n", heap_counter);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
200 // test_heap();
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
201 if(heap==NULL)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
202 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
203 heap=malloc(20000000);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
204 memset(heap, 0xCC,20000000);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
205 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
206 if(heap==0)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
207 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
208 printf("No enough memory\n");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
209 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
210 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
211 if(heap_counter+size>20000000)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
212 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
213 printf("No enough memory\n");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
214 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
215 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
216 *(int*)(heap+heap_counter)=0x433476;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
217 heap_counter+=4;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
218 *(int*)(heap+heap_counter)=size;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
219 heap_counter+=4;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
220 printf("Allocated %d bytes of memory: sys %d, user %d-%d\n", size, heap_counter-8, heap_counter, heap_counter+size);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
221 if(to_zero)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
222 memset(heap+heap_counter, 0, size);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
223 heap_counter+=size;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
224 return heap+heap_counter-size;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
225 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
226 int my_release(char* memory)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
227 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
228 // test_heap();
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
229 if(memory==NULL)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
230 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
231 printf("ERROR: free(0)\n");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
232 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
233 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
234 if(*(int*)(memory-8)!=0x433476)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
235 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
236 printf("MEMORY CORRUPTION !!!!!!!!!!!!!!!!!!!\n");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
237 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
238 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
239 printf("Freed %d bytes of memory\n", *(int*)(memory-4));
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
240 // memset(memory-8, *(int*)(memory-4), 0xCC);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
241 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
242 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
243
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
244 #else
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
245 #define GARBAGE
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
246 #ifdef GARBAGE
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
247 struct alc_list_t;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
248 typedef struct alc_list_t {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
249 int size;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
250 int addr;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
251 struct alc_list_t *prev;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
252 struct alc_list_t *next;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
253 }alc_list;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
254 static alc_list *alclist=NULL;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
255 static alccnt=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
256 #endif
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
257
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
258 void* my_mreq(int size, int to_zero)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
259 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
260 void* answer;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
261 if(to_zero)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
262 answer=calloc(size+4, 1);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
263 else
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
264 answer=malloc(size+4);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
265 *(int*)answer=size;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
266 #ifdef GARBAGE
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
267 if (alclist==NULL) {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
268 alclist=malloc(sizeof(alc_list));
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
269 alclist->prev=alclist->next=NULL;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
270 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
271 else {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
272 alclist->next=malloc(sizeof(alc_list));
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
273 alclist->next->prev=alclist;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
274 alclist->next->next=NULL;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
275 alclist=alclist->next;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
276 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
277 alclist->size=size;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
278 alclist->addr=answer;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
279 alccnt++;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
280 #endif
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
281 return (int*)((int)answer+sizeof(int));
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
282 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
283 int my_release(char* memory)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
284 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
285 #ifdef GARBAGE
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
286 alc_list* pp;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
287 if(memory==0)return 0;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
288 if(alclist!=NULL)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
289 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
290 pp=alclist;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
291 if ((pp->prev==NULL) && (pp->next == NULL)){
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
292 free(pp);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
293 alclist=NULL;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
294 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
295 else {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
296 for(;pp;pp=pp->prev) {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
297 if (pp->addr == memory-4) {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
298 if (pp->prev)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
299 pp->prev->next=pp->next;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
300 if (pp->next)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
301 pp->next->prev=pp->prev;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
302 if (pp == alclist)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
303 alclist=pp->prev;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
304 free(pp);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
305 alccnt--;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
306 break;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
307 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
308 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
309 if (pp == NULL) {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
310 printf("Not Found %x %d\n",memory-4,alccnt);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
311 return 0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
312 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
313 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
314 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
315 #endif
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
316 free(memory-4);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
317 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
318 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
319 #endif
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
320 int my_size(char* memory)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
321 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
322 return *(int*)(memory-4);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
323 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
324
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
325 extern int unk_exp1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
326 char extcode[20000];// place for 200 unresolved exports
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
327 int pos=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
328
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
329 int WINAPI ext_unknown()
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
330 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
331 printf("Unknown func called\n");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
332 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
333 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
334 int WINAPI expIsBadWritePtr(void* ptr, unsigned int count)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
335 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
336 int result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
337 if(count==0)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
338 result=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
339 else
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
340 if(ptr==0)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
341 result=1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
342 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
343 result=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
344 dbgprintf("IsBadWritePtr(0x%x, 0x%x) => %d\n", ptr, count, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
345 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
346 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
347 int WINAPI expIsBadReadPtr(void* ptr, unsigned int count)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
348 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
349 int result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
350 if(count==0)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
351 result=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
352 else
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
353 if(ptr==0)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
354 result=1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
355 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
356 result=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
357 dbgprintf("IsBadReadPtr(0x%x, 0x%x) => %d\n", ptr, count, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
358 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
359 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
360 void* CDECL expmalloc(int size)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
361 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
362 //printf("malloc");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
363 // return malloc(size);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
364 void* result=my_mreq(size,0);
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
365 dbgprintf("malloc(0x%x) => 0x%x\n", size,result);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
366 if(result==0)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
367 printf("WARNING: malloc() failed\n");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
368 return result;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
369 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
370 void CDECL expfree(void* mem)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
371 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
372 // return free(mem);
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
373 dbgprintf("free(0x%x)\n", mem);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
374 my_release(mem);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
375 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
376 void* CDECL expnew(int size)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
377 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
378 // printf("NEW:: Call from address %08x\n STACK DUMP:\n", *(-1+(int*)&size));
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
379 // printf("%08x %08x %08x %08x\n",
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
380 // size, *(1+(int*)&size),
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
381 // *(2+(int*)&size),*(3+(int*)&size));
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
382 void* result=my_mreq(size,0);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
383 dbgprintf("new(0x%x) => 0x%x\n", size, result);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
384 if(result==0)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
385 printf("WARNING: new() failed\n");
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
386 return result;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
387
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
388 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
389 int CDECL expdelete(void* memory)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
390 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
391 dbgprintf("delete(0x%x)\n", memory);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
392 my_release(memory);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
393 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
394 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
395 int WINAPI expDisableThreadLibraryCalls(int module)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
396 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
397 dbgprintf("DisableThreadLibraryCalls(0x%x) => 0\n", module);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
398 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
399 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
400 int CDECL exp_initterm(int v1, int v2)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
401 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
402 dbgprintf("_initterm(0x%x, 0x%x) => 0\n", v1, v2);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
403 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
404 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
405
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
406 typedef struct {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
407 unsigned int uDriverSignature;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
408 void* hDriverModule;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
409 void* DriverProc;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
410 unsigned int dwDriverID;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
411 } DRVR;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
412
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
413 void* WINAPI expGetDriverModuleHandle(DRVR* pdrv)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
414 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
415 void* result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
416 if (pdrv==NULL) result=NULL;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
417 result=pdrv->hDriverModule;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
418 dbgprintf("GetDriverModuleHandle(0x%x) => 0x%x\n", pdrv, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
419 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
420 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
421
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
422 void* WINAPI expGetModuleHandleA(const char* name)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
423 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
424 WINE_MODREF* wm;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
425 void* result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
426 if(!name)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
427 result=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
428 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
429 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
430 wm=MODULE_FindModule(name);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
431 if(wm==0)result=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
432 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
433 result=(void*)(wm->module);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
434 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
435 if(!result)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
436 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
437 if(strcasecmp(name, "kernel32")==0)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
438 result=0x120;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
439 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
440 dbgprintf("GetModuleHandleA('%s') => 0x%x\n", name, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
441 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
442 }
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
443
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
444 struct th_list_t;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
445 typedef struct th_list_t{
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
446 int id;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
447 void* thread;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
448 struct th_list_t* next;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
449 struct th_list_t* prev;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
450 }th_list;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
451
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
452 static th_list* list=NULL;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
453
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
454
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
455
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
456 void* WINAPI expCreateThread(void* pSecAttr, long dwStackSize, void* lpStartAddress,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
457 void* lpParameter, long dwFlags, long* dwThreadId)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
458 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
459 pthread_t *pth;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
460 // printf("CreateThread:");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
461 pth=my_mreq(sizeof(pthread_t), 0);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
462 pthread_create(pth, NULL, (void*(*)(void*))lpStartAddress, lpParameter);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
463 if(dwFlags)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
464 printf( "WARNING: CreateThread flags not supported\n");
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
465 if(dwThreadId)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
466 *dwThreadId=(long)pth;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
467 if(list==NULL)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
468 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
469 list=my_mreq(sizeof(th_list), 1);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
470 list->next=list->prev=NULL;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
471 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
472 else
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
473 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
474 list->next=my_mreq(sizeof(th_list), 0);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
475 list->next->prev=list;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
476 list->next->next=NULL;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
477 list=list->next;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
478 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
479 list->thread=pth;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
480 dbgprintf("CreateThread(0x%x, 0x%x, 0x%x, 0x%x, 0x%x, 0x%x) => 0x%x\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
481 pSecAttr, dwStackSize, lpStartAddress, lpParameter, dwFlags, dwThreadId, pth);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
482 return pth;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
483 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
484
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
485 struct mutex_list_t;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
486
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
487 struct mutex_list_t
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
488 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
489 char type;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
490 pthread_mutex_t *pm;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
491 pthread_cond_t *pc;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
492 char state;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
493 char reset;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
494 char name[64];
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
495 int semaphore;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
496 struct mutex_list_t* next;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
497 struct mutex_list_t* prev;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
498 };
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
499 typedef struct mutex_list_t mutex_list;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
500 static mutex_list* mlist=NULL;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
501 void* WINAPI expCreateEventA(void* pSecAttr, char bManualReset,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
502 char bInitialState, const char* name)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
503 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
504 pthread_mutex_t *pm;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
505 pthread_cond_t *pc;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
506 if(mlist!=NULL)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
507 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
508 mutex_list* pp=mlist;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
509 if(name!=NULL)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
510 do
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
511 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
512 if((strcmp(pp->name, name)==0) && (pp->type==0))
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
513 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
514 dbgprintf("CreateEventA(0x%x, 0x%x, 0x%x, 0x%x='%s') => 0x%x\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
515 pSecAttr, bManualReset, bInitialState, name, name, pp->pm);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
516 return pp->pm;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
517 }
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
518 }while(pp=pp->prev);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
519 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
520 pm=my_mreq(sizeof(pthread_mutex_t), 0);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
521 pthread_mutex_init(pm, NULL);
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
522 pc=my_mreq(sizeof(pthread_cond_t), 0);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
523 pthread_cond_init(pc, NULL);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
524 if(mlist==NULL)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
525 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
526 mlist=my_mreq(sizeof(mutex_list), 00);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
527 mlist->next=mlist->prev=NULL;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
528 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
529 else
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
530 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
531 mlist->next=my_mreq(sizeof(mutex_list), 00);
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
532 mlist->next->prev=mlist;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
533 mlist->next->next=NULL;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
534 mlist=mlist->next;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
535 }
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
536 mlist->type=0; /* Type Event */
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
537 mlist->pm=pm;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
538 mlist->pc=pc;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
539 mlist->state=bInitialState;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
540 mlist->reset=bManualReset;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
541 if(name!=NULL)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
542 strncpy(mlist->name, name, 64);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
543 else
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
544 mlist->name[0]=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
545 if(pm==NULL)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
546 dbgprintf("ERROR::: CreateEventA failure\n");
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
547 /*
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
548 if(bInitialState)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
549 pthread_mutex_lock(pm);
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
550 */
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
551 if(name)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
552 dbgprintf("CreateEventA(0x%x, 0x%x, 0x%x, 0x%x='%s') => 0x%x\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
553 pSecAttr, bManualReset, bInitialState, name, name, mlist);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
554 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
555 dbgprintf("CreateEventA(0x%x, 0x%x, 0x%x, NULL) => 0x%x\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
556 pSecAttr, bManualReset, bInitialState, mlist);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
557 return mlist;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
558 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
559
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
560 void* WINAPI expSetEvent(void* event)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
561 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
562 mutex_list *ml = (mutex_list *)event;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
563 dbgprintf("SetEvent(%x) => 0x1\n", event);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
564 pthread_mutex_lock(ml->pm);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
565 if (ml->state == 0) {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
566 ml->state = 1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
567 pthread_cond_signal(ml->pc);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
568 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
569 pthread_mutex_unlock(ml->pm);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
570
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
571 return (void *)1;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
572 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
573 void* WINAPI expResetEvent(void* event)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
574 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
575 mutex_list *ml = (mutex_list *)event;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
576 dbgprintf("ResetEvent(0x%x) => 0x1\n", event);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
577 pthread_mutex_lock(ml->pm);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
578 ml->state = 0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
579 pthread_mutex_unlock(ml->pm);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
580
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
581 return (void *)1;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
582 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
583
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
584 void* WINAPI expWaitForSingleObject(void* object, int duration)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
585 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
586 mutex_list *ml = (mutex_list *)object;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
587 int ret;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
588 mutex_list* pp=mlist;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
589 // dbgprintf("WaitForSingleObject(0x%x, duration %d) =>\n",object, duration);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
590 do {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
591 if (pp == NULL) dbgprintf("WaitForSingleObject: NotFound\n");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
592 if((pp->pm, mlist->pm)==0)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
593 break;;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
594 }while(pp=pp->prev);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
595
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
596
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
597 pthread_mutex_lock(ml->pm);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
598
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
599 switch(ml->type) {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
600 case 0: /* Event */
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
601 if (duration == 0) { /* Check Only */
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
602 if (ml->state == 1) ret = WAIT_FAILED;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
603 else ret = WAIT_OBJECT_0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
604 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
605 if (duration == -1) { /* INFINITE */
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
606 if (ml->state == 0)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
607 pthread_cond_wait(ml->pc,ml->pm);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
608 if (ml->reset)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
609 ml->state = 0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
610 ret = WAIT_OBJECT_0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
611 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
612 if (duration > 0) { /* Timed Wait */
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
613 struct timespec abstime;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
614 struct timeval now;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
615 gettimeofday(&now, 0);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
616 abstime.tv_sec = now.tv_sec + (now.tv_usec+duration)/1000000;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
617 abstime.tv_nsec = ((now.tv_usec+duration)%1000000)*1000;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
618 if (ml->state == 0)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
619 ret=pthread_cond_timedwait(ml->pc,ml->pm,&abstime);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
620 if (ret == ETIMEDOUT) ret = WAIT_TIMEOUT;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
621 else ret = WAIT_OBJECT_0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
622 if (ml->reset)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
623 ml->state = 0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
624 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
625 break;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
626 case 1: /* Semaphore */
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
627 if (duration == 0) {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
628 if(ml->semaphore==0) ret = WAIT_FAILED;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
629 else {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
630 ml->semaphore++;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
631 ret = WAIT_OBJECT_0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
632 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
633 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
634 if (duration == -1) {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
635 if (ml->semaphore==0)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
636 pthread_cond_wait(ml->pc,ml->pm);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
637 ml->semaphore--;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
638 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
639 break;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
640 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
641 pthread_mutex_unlock(ml->pm);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
642
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
643 dbgprintf("WaitForSingleObject(0x%x, %d): 0x%x => 0x%x \n",object,duration,ml,ret);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
644 return (void *)ret;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
645 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
646
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
647 static BYTE PF[64] = {0,};
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
648
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
649 WIN_BOOL WINAPI expIsProcessorFeaturePresent(DWORD v)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
650 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
651 WIN_BOOL result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
652 if(v>63)result=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
653 else result=PF[v];
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
654 dbgprintf("IsProcessorFeaturePresent(0x%x) => 0x%x\n", v, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
655 return result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
656 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
657
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
658 static void DumpSystemInfo(const SYSTEM_INFO* si)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
659 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
660 dbgprintf(" Processor architecture %d\n", si->u.s.wProcessorArchitecture);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
661 dbgprintf(" Page size: %d\n", si->dwPageSize);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
662 dbgprintf(" Minimum app address: %d\n", si->lpMinimumApplicationAddress);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
663 dbgprintf(" Maximum app address: %d\n", si->lpMaximumApplicationAddress);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
664 dbgprintf(" Active processor mask: 0x%x\n", si->dwActiveProcessorMask);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
665 dbgprintf(" Number of processors: %d\n", si->dwNumberOfProcessors);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
666 dbgprintf(" Processor type: 0x%x\n", si->dwProcessorType);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
667 dbgprintf(" Allocation granularity: 0x%x\n", si->dwAllocationGranularity);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
668 dbgprintf(" Processor level: 0x%x\n", si->wProcessorLevel);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
669 dbgprintf(" Processor revision: 0x%x\n", si->wProcessorRevision);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
670 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
671
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
672 void WINAPI expGetSystemInfo(SYSTEM_INFO* si)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
673 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
674 /* FIXME: better values for the two entries below... */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
675 static int cache = 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
676 static SYSTEM_INFO cachedsi;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
677 unsigned int regs[4];
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
678 HKEY xhkey=0,hkey;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
679 dbgprintf("GetSystemInfo(0x%d) =>\n");
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
680
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
681 if (cache) {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
682 memcpy(si,&cachedsi,sizeof(*si));
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
683 DumpSystemInfo(si);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
684 return;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
685 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
686 memset(PF,0,sizeof(PF));
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
687
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
688 cachedsi.u.s.wProcessorArchitecture = PROCESSOR_ARCHITECTURE_INTEL;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
689 cachedsi.dwPageSize = getpagesize();
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
690
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
691 /* FIXME: better values for the two entries below... */
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
692 cachedsi.lpMinimumApplicationAddress = (void *)0x00000000;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
693 cachedsi.lpMaximumApplicationAddress = (void *)0x7FFFFFFF;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
694 cachedsi.dwActiveProcessorMask = 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
695 cachedsi.dwNumberOfProcessors = 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
696 cachedsi.dwProcessorType = PROCESSOR_INTEL_386;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
697 cachedsi.dwAllocationGranularity = 0x10000;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
698 cachedsi.wProcessorLevel = 5; /* pentium */
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
699 cachedsi.wProcessorRevision = 0x0101;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
700
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
701 #if defined(__FreeBSD__) || defined(__NetBSD__)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
702 cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
703 cachedsi.wProcessorLevel= 5;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
704 PF[PF_COMPARE_EXCHANGE_DOUBLE] = TRUE;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
705 do_cpuid(regs);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
706 if (regs[3] & 0x00800000)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
707 PF[PF_MMX_INSTRUCTIONS_AVAILABLE] = TRUE;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
708 cachedsi.dwNumberOfProcessors=1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
709 #else
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
710 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
711 char buf[20];
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
712 char line[200];
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
713 FILE *f = fopen ("/proc/cpuinfo", "r");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
714
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
715 if (!f)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
716 return;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
717 xhkey = 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
718 while (fgets(line,200,f)!=NULL) {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
719 char *s,*value;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
720
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
721 /* NOTE: the ':' is the only character we can rely on */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
722 if (!(value = strchr(line,':')))
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
723 continue;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
724 /* terminate the valuename */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
725 *value++ = '\0';
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
726 /* skip any leading spaces */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
727 while (*value==' ') value++;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
728 if ((s=strchr(value,'\n')))
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
729 *s='\0';
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
730
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
731 /* 2.1 method */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
732 if (!lstrncmpiA(line, "cpu family",strlen("cpu family"))) {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
733 if (isdigit (value[0])) {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
734 switch (value[0] - '0') {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
735 case 3: cachedsi.dwProcessorType = PROCESSOR_INTEL_386;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
736 cachedsi.wProcessorLevel= 3;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
737 break;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
738 case 4: cachedsi.dwProcessorType = PROCESSOR_INTEL_486;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
739 cachedsi.wProcessorLevel= 4;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
740 break;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
741 case 5: cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
742 cachedsi.wProcessorLevel= 5;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
743 break;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
744 case 6: cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
745 cachedsi.wProcessorLevel= 5;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
746 break;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
747 default:cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
748 cachedsi.wProcessorLevel= 5;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
749 break;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
750 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
751 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
752 /* set the CPU type of the current processor */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
753 sprintf(buf,"CPU %ld",cachedsi.dwProcessorType);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
754 continue;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
755 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
756 /* old 2.0 method */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
757 if (!lstrncmpiA(line, "cpu",strlen("cpu"))) {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
758 if ( isdigit (value[0]) && value[1] == '8' &&
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
759 value[2] == '6' && value[3] == 0
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
760 ) {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
761 switch (value[0] - '0') {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
762 case 3: cachedsi.dwProcessorType = PROCESSOR_INTEL_386;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
763 cachedsi.wProcessorLevel= 3;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
764 break;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
765 case 4: cachedsi.dwProcessorType = PROCESSOR_INTEL_486;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
766 cachedsi.wProcessorLevel= 4;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
767 break;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
768 case 5: cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
769 cachedsi.wProcessorLevel= 5;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
770 break;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
771 case 6: cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
772 cachedsi.wProcessorLevel= 5;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
773 break;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
774 default:cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
775 cachedsi.wProcessorLevel= 5;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
776 break;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
777 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
778 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
779 /* set the CPU type of the current processor */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
780 sprintf(buf,"CPU %ld",cachedsi.dwProcessorType);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
781 continue;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
782 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
783 if (!lstrncmpiA(line,"fdiv_bug",strlen("fdiv_bug"))) {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
784 if (!lstrncmpiA(value,"yes",3))
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
785 PF[PF_FLOATING_POINT_PRECISION_ERRATA] = TRUE;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
786
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
787 continue;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
788 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
789 if (!lstrncmpiA(line,"fpu",strlen("fpu"))) {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
790 if (!lstrncmpiA(value,"no",2))
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
791 PF[PF_FLOATING_POINT_EMULATED] = TRUE;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
792
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
793 continue;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
794 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
795 if (!lstrncmpiA(line,"processor",strlen("processor"))) {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
796 /* processor number counts up...*/
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
797 int x;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
798
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
799 if (sscanf(value,"%d",&x))
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
800 if (x+1>cachedsi.dwNumberOfProcessors)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
801 cachedsi.dwNumberOfProcessors=x+1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
802
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
803 /* Create a new processor subkey on a multiprocessor
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
804 * system
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
805 */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
806 sprintf(buf,"%d",x);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
807 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
808 if (!lstrncmpiA(line,"stepping",strlen("stepping"))) {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
809 int x;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
810
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
811 if (sscanf(value,"%d",&x))
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
812 cachedsi.wProcessorRevision = x;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
813 }
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
814 if
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
815 ( (!lstrncmpiA(line,"flags",strlen("flags")))
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
816 || (!lstrncmpiA(line,"features",strlen("features"))) )
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
817 {
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
818 if (strstr(value,"cx8"))
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
819 PF[PF_COMPARE_EXCHANGE_DOUBLE] = TRUE;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
820 if (strstr(value,"mmx"))
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
821 PF[PF_MMX_INSTRUCTIONS_AVAILABLE] = TRUE;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
822
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
823 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
824 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
825 fclose (f);
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
826 /*
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
827 * ad hoc fix for smp machines.
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
828 * some problems on WaitForSingleObject,CreateEvent,SetEvent
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
829 * CreateThread ...etc..
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
830 *
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
831 */
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
832 cachedsi.dwNumberOfProcessors=1;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
833 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
834 #endif /* __FreeBSD__ */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
835 memcpy(si,&cachedsi,sizeof(*si));
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
836 DumpSystemInfo(si);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
837 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
838
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
839 long WINAPI expGetVersion()
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
840 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
841 dbgprintf("GetVersion() => 0xC0000004\n");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
842 return 0xC0000004;//Windows 95
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
843 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
844
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
845 HANDLE WINAPI expHeapCreate(long flags, long init_size, long max_size)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
846 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
847 // printf("HeapCreate:");
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
848 HANDLE result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
849 if(init_size==0)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
850 result=(HANDLE)my_mreq(0x110000, 0);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
851 else
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
852 result=(HANDLE)my_mreq(init_size, 0);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
853 dbgprintf("HeapCreate(flags 0x%x, initial size %d, maximum size %d) => 0x%x\n", flags, init_size, max_size, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
854 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
855 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
856 void* WINAPI expHeapAlloc(HANDLE heap, int flags, int size)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
857 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
858 void* z;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
859 // printf("HeapAlloc:");
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
860 /**
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
861 Morgan's m3jpeg32.dll v. 2.0 encoder expects that request for
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
862 HeapAlloc returns area larger than size argument :-/
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
863 **/
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
864 z=my_mreq(((size+4095)/4096)*4096, flags&8);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
865 // z=HeapAlloc(heap,flags,size);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
866 if(z==0)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
867 printf("HeapAlloc failure\n");
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
868 dbgprintf("HeapAlloc(heap 0x%x, flags 0x%x, size 0x%x) => 0x%x\n", heap, flags, size, z);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
869 return z;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
870 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
871 long WINAPI expHeapDestroy(void* heap)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
872 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
873 dbgprintf("HeapDestroy(heap 0x%x) => 1\n", heap);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
874 my_release(heap);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
875 return 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
876 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
877
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
878 long WINAPI expHeapFree(int arg1, int arg2, void* ptr)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
879 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
880 dbgprintf("HeapFree(0x%x, 0x%x, pointer 0x%x) => 1\n", arg1, arg2, ptr);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
881 my_release(ptr);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
882 return 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
883 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
884 long WINAPI expHeapSize(int heap, int flags, void* pointer)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
885 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
886 long result=my_size(pointer);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
887 dbgprintf("HeapSize(heap 0x%x, flags 0x%x, pointer 0x%x) => %d\n", heap, flags, pointer, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
888 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
889 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
890 long WINAPI expGetProcessHeap(void)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
891 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
892 dbgprintf("GetProcessHeap() => 1\n");
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
893 return 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
894 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
895 void* WINAPI expVirtualAlloc(void* v1, long v2, long v3, long v4)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
896 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
897 void* z;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
898 z=VirtualAlloc(v1, v2, v3, v4);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
899 if(z==0)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
900 printf("VirtualAlloc failure\n");
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
901 dbgprintf("VirtualAlloc(0x%x, %d, %d, %d) => 0x%x \n",v1,v2,v3,v4, z);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
902 return z;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
903 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
904 int WINAPI expVirtualFree(void* v1, int v2, int v3)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
905 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
906 int result=VirtualFree(v1,v2,v3);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
907 dbgprintf("VirtualFree(0x%x, %d, %d) => %d\n",v1,v2,v3, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
908 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
909 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
910 struct CRITSECT
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
911 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
912 pthread_t id;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
913 pthread_mutex_t mutex;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
914 int locked;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
915 };
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
916 void WINAPI expInitializeCriticalSection(CRITICAL_SECTION* c)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
917 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
918 struct CRITSECT cs;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
919 dbgprintf("InitializeCriticalSection(0x%x)\n", c);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
920 /* if(sizeof(pthread_mutex_t)>sizeof(CRITICAL_SECTION))
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
921 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
922 printf(" ERROR:::: sizeof(pthread_mutex_t) is %d, expected <=%d!\n",
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
923 sizeof(pthread_mutex_t), sizeof(CRITICAL_SECTION));
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
924 return;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
925 }*/
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
926 /* pthread_mutex_init((pthread_mutex_t*)c, NULL); */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
927 pthread_mutex_init(&cs.mutex, NULL);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
928 cs.locked=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
929 *(void**)c=malloc(sizeof cs);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
930 memcpy(*(void**)c, &cs, sizeof cs);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
931 return;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
932 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
933 void WINAPI expEnterCriticalSection(CRITICAL_SECTION* c)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
934 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
935 struct CRITSECT* cs=*(struct CRITSECT**)c;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
936 dbgprintf("EnterCriticalSection(0x%x)\n",c);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
937 // cs.id=pthread_self();
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
938 if(cs->locked)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
939 if(cs->id==pthread_self())
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
940 return;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
941 pthread_mutex_lock(&(cs->mutex));
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
942 cs->locked=1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
943 cs->id=pthread_self();
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
944 return;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
945 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
946 void WINAPI expLeaveCriticalSection(CRITICAL_SECTION* c)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
947 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
948 struct CRITSECT* cs=*(struct CRITSECT**)c;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
949 // struct CRITSECT* cs=(struct CRITSECT*)c;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
950 dbgprintf("LeaveCriticalSection(0x%x)\n",c);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
951 cs->locked=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
952 pthread_mutex_unlock(&(cs->mutex));
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
953 return;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
954 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
955 void WINAPI expDeleteCriticalSection(CRITICAL_SECTION *c)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
956 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
957 struct CRITSECT* cs=*(struct CRITSECT**)c;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
958 // struct CRITSECT* cs=(struct CRITSECT*)c;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
959 dbgprintf("DeleteCriticalSection(0x%x)\n",c);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
960 pthread_mutex_destroy(&(cs->mutex));
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
961 free(cs);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
962 return;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
963 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
964 int WINAPI expGetCurrentThreadId()
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
965 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
966 dbgprintf("GetCurrentThreadId() => %d\n", getpid());
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
967 return getpid();
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
968 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
969 int WINAPI expGetCurrentProcess()
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
970 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
971 dbgprintf("GetCurrentProcess() => %d\n", getpid());
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
972 return getpid();
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
973 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
974 struct tls_s;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
975 typedef struct tls_s
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
976 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
977 void* value;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
978 int used;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
979 struct tls_s* prev;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
980 struct tls_s* next;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
981 }tls_t;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
982
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
983 tls_t* g_tls=NULL;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
984
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
985 void* WINAPI expTlsAlloc()
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
986 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
987 if(g_tls==NULL)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
988 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
989 g_tls=my_mreq(sizeof(tls_t), 0);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
990 g_tls->next=g_tls->prev=NULL;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
991 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
992 else
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
993 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
994 g_tls->next=my_mreq(sizeof(tls_t), 0);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
995 g_tls->next->prev=g_tls;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
996 g_tls->next->next=NULL;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
997 g_tls=g_tls->next;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
998 }
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
999 dbgprintf("TlsAlloc() => 0x%x\n", g_tls);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1000 return g_tls;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1001 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1002
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1003 int WINAPI expTlsSetValue(tls_t* index, void* value)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1004 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1005 int result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1006 if(index==0)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1007 result=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1008 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1009 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1010 index->value=value;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1011 result=1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1012 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1013 dbgprintf("TlsSetValue(index 0x%x, value 0x%x) => %d \n", index, value, result );
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1014 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1015 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1016 void* WINAPI expTlsGetValue(tls_t* index)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1017 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1018 void* result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1019 if(index==0)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1020 result=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1021 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1022 result=index->value;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1023 dbgprintf("TlsGetValue(index 0x%x) => 0x%x\n", index, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1024 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1025 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1026 int WINAPI expTlsFree(tls_t* index)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1027 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1028 int result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1029 if(index==0)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1030 result=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1031 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1032 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1033 if(index->next)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1034 index->next->prev=index->prev;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1035 if(index->prev)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1036 index->prev->next=index->next;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1037 my_release((void*)index);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1038 result=1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1039 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1040 dbgprintf("TlsFree(index 0x%x) => %d\n", index, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1041 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1042 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1043 void* WINAPI expLocalAlloc(int flags, int size)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1044 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1045 void* z;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1046 if(flags&GMEM_ZEROINIT)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1047 z=my_mreq(size, 1);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1048 else
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1049 z=my_mreq(size, 0);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1050 if(z==0)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1051 printf("LocalAlloc() failed\n");
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1052 dbgprintf("LocalAlloc(%d, flags 0x%x) => 0x%x\n", size, flags, z);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1053 return z;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1054 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1055 void* WINAPI expLocalLock(void* z)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1056 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1057 dbgprintf("LocalLock(0x%x) => 0x%x\n", z, z);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1058 return z;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1059 }
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1060
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1061 void* WINAPI expGlobalAlloc(int flags, int size)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1062 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1063 void* z;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1064 dbgprintf("GlobalAlloc(%d, flags 0x%X)\n", size, flags);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1065 if(flags&GMEM_ZEROINIT)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1066 z=calloc(size, 1);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1067 // z=my_mreq(size, 1);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1068 else
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1069 z=malloc(size);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1070 // z=my_mreq(size, 0);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1071 if(z==0)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1072 printf("GlobalAlloc() failed\n");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1073 dbgprintf("GlobalAlloc(%d, flags 0x%x) => 0x%x\n", size, flags, z);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1074 return z;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1075 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1076 void* WINAPI expGlobalLock(void* z)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1077 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1078 dbgprintf("GlobalLock(0x%x) => 0x%x\n", z, z);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1079 return z;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1080 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1081 int WINAPI expLoadStringA(long instance, long id, void* buf, long size)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1082 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1083 int result=LoadStringA(instance, id, buf, size);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1084 // if(buf)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1085 dbgprintf("LoadStringA(instance 0x%x, id 0x%x, buffer 0x%x, size %d) => %d ( %s )\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1086 instance, id, buf, size, result, buf);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1087 // else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1088 // dbgprintf("LoadStringA(instance 0x%x, id 0x%x, buffer 0x%x, size %d) => %d\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1089 // instance, id, buf, size, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1090 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1091 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1092
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1093 long WINAPI expMultiByteToWideChar(long v1, long v2, char* s1, long siz1, short* s2, int siz2)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1094 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1095 #warning FIXME
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1096 int i;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1097 int result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1098 if(s2==0)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1099 result=1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1100 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1101 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1102 if(siz1>siz2/2)siz1=siz2/2;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1103 for(i=1; i<=siz1; i++)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1104 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1105 *s2=*s1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1106 if(!*s1)break;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1107 s2++;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1108 s1++;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1109 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1110 result=i;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1111 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1112 if(s1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1113 dbgprintf("MultiByteToWideChar(codepage %d, flags 0x%x, string 0x%x='%s',
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1114 size %d, dest buffer 0x%x, dest size %d) => %d\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1115 v1, v2, s1, s1, siz1, s2, siz2, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1116 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1117 dbgprintf("MultiByteToWideChar(codepage %d, flags 0x%x, string NULL,
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1118 size %d, dest buffer 0x%x, dest size %d) =>\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1119 v1, v2, siz1, s2, siz2, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1120 return result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1121 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1122 static void wch_print(const short* str)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1123 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1124 dbgprintf(" src: ");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1125 while(*str)dbgprintf("%c", *str++);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1126 dbgprintf("\n");
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1127 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1128 long WINAPI expWideCharToMultiByte(long v1, long v2, short* s1, long siz1, char* s2, int siz2, char* c3, int* siz3)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1129 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1130 int result;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1131 dbgprintf("WideCharToMultiByte(codepage %d, flags 0x%x, src 0x%x, src size %d, "
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1132 "dest 0x%x, dest size %d, defch 0x%x, used_defch 0x%x)", v1, v2, s1, siz1, s2, siz2, c3, siz3);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1133 result=WideCharToMultiByte(v1, v2, s1, siz1, s2, siz2, c3, siz3);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1134 dbgprintf("=> %d\n", result);
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1135 if(s1)wch_print(s1);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1136 if(s2)dbgprintf(" dest: %s\n", s2);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1137 return result;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1138 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1139 long WINAPI expGetVersionExA(OSVERSIONINFOA* c)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1140 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1141 dbgprintf("GetVersionExA(0x%x) => 1\n");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1142 c->dwOSVersionInfoSize=sizeof(*c);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1143 c->dwMajorVersion=4;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1144 c->dwMinorVersion=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1145 c->dwBuildNumber=0x4000457;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1146 c->dwPlatformId=VER_PLATFORM_WIN32_WINDOWS;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1147 strcpy(c->szCSDVersion, " B");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1148 dbgprintf(" Major version: 4\n Minor version: 0\n Build number: 0x4000457\n"
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1149 " Platform Id: VER_PLATFORM_WIN32_WINDOWS\n Version string: ' B'\n");
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1150 return 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1151 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1152 HANDLE WINAPI expCreateSemaphoreA(char* v1, long init_count, long max_count, char* name)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1153 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1154 pthread_mutex_t *pm;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1155 pthread_cond_t *pc;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1156 if(mlist!=NULL)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1157 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1158 mutex_list* pp=mlist;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1159 if(name!=NULL)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1160 do
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1161 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1162 if((strcmp(pp->name, name)==0) && (pp->type==1))
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1163 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1164 dbgprintf("CreateSemaphoreA(0x%x, init_count %d, max_count %d, name 0x%x='%s') => 0x%x",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1165 v1, init_count, max_count, name, name, mlist);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1166 return (HANDLE)mlist;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1167 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1168 }while(pp=pp->prev);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1169 }
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1170 pm=my_mreq(sizeof(pthread_mutex_t), 0);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1171 pthread_mutex_init(pm, NULL);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1172 pc=my_mreq(sizeof(pthread_cond_t), 0);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1173 pthread_cond_init(pc, NULL);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1174 if(mlist==NULL)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1175 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1176 mlist=my_mreq(sizeof(mutex_list), 00);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1177 mlist->next=mlist->prev=NULL;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1178 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1179 else
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1180 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1181 mlist->next=my_mreq(sizeof(mutex_list), 00);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1182 mlist->next->prev=mlist;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1183 mlist->next->next=NULL;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1184 mlist=mlist->next;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1185 }
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1186 mlist->type=1; /* Type Semaphore */
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1187 mlist->pm=pm;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1188 mlist->pc=pc;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1189 mlist->state=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1190 mlist->reset=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1191 mlist->semaphore=init_count;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1192 if(name!=NULL)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1193 strncpy(mlist->name, name, 64);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1194 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1195 mlist->name[0]=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1196 if(pm==NULL)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1197 dbgprintf("ERROR::: CreateSemaphoreA failure\n");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1198 if(name)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1199 dbgprintf("CreateSemaphoreA(0x%x, init_count %d, max_count %d, name 0x%x='%s') => 0x%x",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1200 v1, init_count, max_count, name, name, mlist);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1201 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1202 dbgprintf("CreateSemaphoreA(0x%x, init_count %d, max_count %d, name 0) => 0x%x",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1203 v1, init_count, max_count, mlist);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1204 return (HANDLE)mlist;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1205 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1206
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1207 long WINAPI expReleaseSemaphore(long hsem, long increment, long* prev_count)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1208 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1209 // The state of a semaphore object is signaled when its count
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1210 // is greater than zero and nonsignaled when its count is equal to zero
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1211 // Each time a waiting thread is released because of the semaphore's signaled
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1212 // state, the count of the semaphore is decreased by one.
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1213 mutex_list *ml = (mutex_list *)hsem;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1214
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1215 pthread_mutex_lock(ml->pm);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1216 if (prev_count != 0) *prev_count = ml->semaphore;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1217 if (ml->semaphore == 0) pthread_cond_signal(ml->pc);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1218 ml->semaphore += increment;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1219 pthread_mutex_unlock(ml->pm);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1220 dbgprintf("ReleaseSemaphore(semaphore 0x%x, increment %d, prev_count 0x%x) => 1\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1221 hsem, increment, prev_count);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1222 return 1;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1223 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1224
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1225
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1226 long WINAPI expRegOpenKeyExA(long key, const char* subkey, long reserved, long access, int* newkey)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1227 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1228 long result=RegOpenKeyExA(key, subkey, reserved, access, newkey);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1229 dbgprintf("RegOpenKeyExA(key 0x%x, subkey %s, reserved %d, access 0x%x, pnewkey 0x%x) => %d\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1230 key, subkey, reserved, access, newkey, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1231 if(newkey)dbgprintf(" New key: 0x%x\n", *newkey);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1232 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1233 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1234 long WINAPI expRegCloseKey(long key)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1235 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1236 long result=RegCloseKey(key);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1237 dbgprintf("RegCloseKey(0x%x) => %d\n", key, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1238 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1239 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1240 long WINAPI expRegQueryValueExA(long key, const char* value, int* reserved, int* type, int* data, int* count)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1241 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1242 long result=RegQueryValueExA(key, value, reserved, type, data, count);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1243 dbgprintf("RegQueryValueExA(key 0x%x, value %s, reserved 0x%x, data 0x%x, count 0x%x)"
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1244 " => 0x%x\n", key, value, reserved, data, count, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1245 if(data && count)dbgprintf(" read %d bytes: '%s'\n", *count, data);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1246 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1247 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1248 long WINAPI expRegCreateKeyExA(long key, const char* name, long reserved,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1249 void* classs, long options, long security,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1250 void* sec_attr, int* newkey, int* status)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1251 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1252 long result=RegCreateKeyExA(key, name, reserved, classs, options, security, sec_attr, newkey, status);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1253 dbgprintf("RegCreateKeyExA(key 0x%x, name 0x%x='%s', reserved=0x%x,"
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1254 " 0x%x, 0x%x, 0x%x, newkey=0x%x, status=0x%x) => %d\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1255 key, name, name, reserved, classs, options, security, sec_attr, newkey, status, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1256 if(!result && newkey) dbgprintf(" New key: 0x%x\n", *newkey);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1257 if(!result && status) dbgprintf(" New key status: 0x%x\n", *status);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1258 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1259 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1260 long WINAPI expRegSetValueExA(long key, const char* name, long v1, long v2, void* data, long size)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1261 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1262 long result=RegSetValueExA(key, name, v1, v2, data, size);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1263 dbgprintf("RegSetValueExA(key 0x%x, name '%s', 0x%x, 0x%x, data 0x%x -> 0x%x '%s', size=%d) => %d",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1264 key, name, v1, v2, data, *(int*)data, data, size, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1265 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1266 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1267
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1268 long WINAPI expRegOpenKeyA (
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1269 long hKey,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1270 LPCSTR lpSubKey,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1271 int* phkResult
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1272 ){
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1273 long result=RegOpenKeyExA(hKey, lpSubKey, 0, 0, phkResult);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1274 dbgprintf("RegOpenKeyExA(key 0x%x, subkey '%s', 0x%x) => %d\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1275 hKey, lpSubKey, phkResult, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1276 if(!result && phkResult) dbgprintf(" New key: 0x%x\n", *phkResult);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1277 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1278 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1279
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1280 long WINAPI expQueryPerformanceCounter(long long* z)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1281 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1282 longcount(z);
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1283 dbgprintf("QueryPerformanceCounter(0x%x) => 1 ( %Ld )\n", z, *z);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1284 return 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1285 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1286
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1287 static double old_freq()
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1288 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1289 static double ofreq=0.0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1290 int i;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1291 int x,y;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1292 i=time(NULL);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1293 if (ofreq != 0.0) return ofreq;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1294 while(i==time(NULL));
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1295 x=localcount();
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1296 i++;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1297 while(i==time(NULL));
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1298 y=localcount();
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1299 ofreq = (double)(y-x)/1000.;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1300 return ofreq;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1301 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1302 static double CPU_Freq()
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1303 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1304 //#ifdef USE_TSC
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1305 FILE *f = fopen ("/proc/cpuinfo", "r");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1306 char line[200];
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1307 char model[200]="unknown";
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1308 char flags[500]="";
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1309 char *s,*value;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1310 double freq=-1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1311
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1312 if (!f)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1313 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1314 //printf("Can't open /proc/cpuinfo for reading\n");
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1315 return old_freq();
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1316 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1317 while (fgets(line,200,f)!=NULL)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1318 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1319 /* NOTE: the ':' is the only character we can rely on */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1320 if (!(value = strchr(line,':')))
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1321 continue;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1322 /* terminate the valuename */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1323 *value++ = '\0';
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1324 /* skip any leading spaces */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1325 while (*value==' ') value++;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1326 if ((s=strchr(value,'\n')))
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1327 *s='\0';
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1328
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1329 if (!strncasecmp(line, "cpu MHz",strlen("cpu MHz")))
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1330 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1331 sscanf(value, "%lf", &freq);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1332 freq*=1000;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1333 break;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1334 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1335 continue;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1336
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1337 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1338 fclose(f);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1339 if(freq<0)return old_freq();
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1340 return freq;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1341 //#else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1342 // return old_freq();
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1343 //#endif
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1344 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1345
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1346 long WINAPI expQueryPerformanceFrequency(long long* z)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1347 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1348 *z=(long long)CPU_Freq();
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1349 dbgprintf("QueryPerformanceFrequency(0x%x) => 1 ( %Ld )\n", z, *z);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1350 return 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1351 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1352 long WINAPI exptimeGetTime()
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1353 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1354 struct timeval t;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1355 long result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1356 gettimeofday(&t, 0);
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1357 result=1000*t.tv_sec+t.tv_usec/1000;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1358 dbgprintf("timeGetTime() => %d\n", result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1359 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1360 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1361 void* WINAPI expLocalHandle(void* v)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1362 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1363 dbgprintf("LocalHandle(0x%x) => 0x%x\n", v, v);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1364 return v;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1365 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1366 void* WINAPI expGlobalHandle(void* v)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1367 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1368 dbgprintf("GlobalHandle(0x%x) => 0x%x\n", v, v);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1369 return v;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1370 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1371 int WINAPI expGlobalUnlock(void* v)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1372 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1373 dbgprintf("GlobalUnlock(0x%x) => 1\n", v);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1374 return 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1375 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1376 //
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1377 void* WINAPI expGlobalFree(void* v)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1378 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1379 dbgprintf("GlobalFree(0x%x) => 0\n", v);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1380 //my_release(v);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1381 free(v);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1382 return 0;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1383 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1384
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1385
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1386 void* WINAPI expGlobalReAlloc(void* v, int size, int flags)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1387 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1388 void* result=realloc(v, size);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1389 dbgprintf("GlobalReAlloc(0x%x, size %d, flags 0x%x) => 0x%x\n", v,size,flags,result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1390 return result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1391 }
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1392
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1393 int WINAPI expLocalUnlock(void* v)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1394 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1395 dbgprintf("LocalUnlock(0x%x) => 1\n", v);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1396 return 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1397 }
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1398 //
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1399 void* WINAPI expLocalFree(void* v)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1400 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1401 dbgprintf("LocalFree(0x%x) => 0\n", v);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1402 my_release(v);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1403 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1404 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1405 HRSRC WINAPI expFindResourceA(HMODULE module, char* name, char* type)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1406 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1407 HRSRC result=FindResourceA(module, name, type);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1408 dbgprintf("FindResourceA(module 0x%x, name 0x%x, type 0x%x) => 0x%x\n", module, name, type, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1409 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1410 }
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1411 extern HRSRC WINAPI LoadResource(HMODULE, HRSRC);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1412 HGLOBAL WINAPI expLoadResource(HMODULE module, HRSRC res)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1413 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1414 HGLOBAL result=LoadResource(module, res);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1415 dbgprintf("LoadResource(module 0x%x, resource 0x%x) => 0x%x\n", module, res, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1416 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1417 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1418 void* WINAPI expLockResource(long res)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1419 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1420 void* result=LockResource(res);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1421 dbgprintf("LockResource(0x%x) => 0x%x\n", res, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1422 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1423 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1424 int WINAPI expFreeResource(long res)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1425 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1426 int result=FreeResource(res);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1427 dbgprintf("FreeResource(0x%x) => %d\n", res, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1428 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1429 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1430 //bool fun(HANDLE)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1431 //!0 on success
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1432 int WINAPI expCloseHandle(long v1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1433 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1434 dbgprintf("CloseHandle(0x%x) => 1\n", v1);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1435 return 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1436 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1437
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1438 const char* WINAPI expGetCommandLineA()
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1439 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1440 dbgprintf("GetCommandLineA() => \"c:\\aviplay.exe\"\n");
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1441 return "c:\\aviplay.exe";
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1442 }
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1443 static short envs[]={'p', 'a', 't', 'h', ' ', 'c', ':', '\\', 0, 0};
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1444 LPWSTR WINAPI expGetEnvironmentStringsW()
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1445 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1446 dbgprintf("GetEnvironmentStringsW() => 0\n", envs);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1447 return 0;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1448 }
121
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
1449 void * WINAPI expRtlZeroMemory(void *p, size_t len)
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
1450 {
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
1451 void* result=memset(p,0,len);
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
1452 dbgprintf("RtlZeroMemory(0x%x, len %d) => 0x%x\n",p,len,result);
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
1453 return result;
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
1454 }
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
1455 void * WINAPI expRtlMoveMemory(void *dst, void *src, size_t len)
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
1456 {
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
1457 void* result=memmove(dst,src,len);
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
1458 dbgprintf("RtlMoveMemory (dest 0x%x, src 0x%x, len %d) => 0x%x\n",dst,src,len,result);
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
1459 return result;
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
1460 }
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
1461
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
1462 void * WINAPI expRtlFillMemory(void *p, int ch, size_t len)
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
1463 {
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
1464 void* result=memset(p,ch,len);
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
1465 dbgprintf("RtlFillMemory(0x%x, char 0x%x, len %d) => 0x%x\n",p,ch,len,result);
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
1466 return result;
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
1467 }
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1468 int WINAPI expFreeEnvironmentStringsW(short* strings)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1469 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1470 dbgprintf("FreeEnvironmentStringsW(0x%x) => 1\n", strings);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1471 return 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1472 }
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1473 int WINAPI expFreeEnvironmentStringsA(char* strings)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1474 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1475 dbgprintf("FreeEnvironmentStringsA(0x%x) => 1\n", strings);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1476 return 1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1477 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1478 static const char ch_envs[]=
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1479 "__MSVCRT_HEAP_SELECT=__GLOBAL_HEAP_SELECTED,1\r\n"
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1480 "PATH=C:\\;C:\\windows\\;C:\\windows\\system\r\n";
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1481 LPCSTR WINAPI expGetEnvironmentStrings()
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1482 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1483 dbgprintf("GetEnvironmentStrings() => 0x%x\n", ch_envs);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1484 return (LPCSTR)ch_envs;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1485 // dbgprintf("GetEnvironmentStrings() => 0\n");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1486 // return 0;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1487 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1488
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1489 int WINAPI expGetStartupInfoA(STARTUPINFOA *s)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1490 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1491 int i;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1492 dbgprintf("GetStartupInfoA(0x%x) => 1\n");
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1493 memset(s, 0, sizeof(*s));
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1494 s->cb=sizeof(*s);
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1495 // s->lpReserved="Reserved";
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1496 // s->lpDesktop="Desktop";
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1497 // s->lpTitle="Title";
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1498 // s->dwX=s->dwY=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1499 // s->dwXSize=s->dwYSize=200;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1500 s->dwFlags=s->wShowWindow=1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1501 // s->hStdInput=s->hStdOutput=s->hStdError=0x1234;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1502 dbgprintf(" cb=%d\n", s->cb);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1503 dbgprintf(" lpReserved='%s'\n", s->lpReserved);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1504 dbgprintf(" lpDesktop='%s'\n", s->lpDesktop);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1505 dbgprintf(" lpTitle='%s'\n", s->lpTitle);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1506 dbgprintf(" dwX=%d dwY=%d dwXSize=%d dwYSize=%d\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1507 s->dwX, s->dwY, s->dwXSize, s->dwYSize);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1508 dbgprintf(" dwXCountChars=%d dwYCountChars=%d dwFillAttribute=%d\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1509 s->dwXCountChars, s->dwYCountChars, s->dwFillAttribute);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1510 dbgprintf(" dwFlags=0x%x wShowWindow=0x%x cbReserved2=0x%x\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1511 s->dwFlags, s->wShowWindow, s->cbReserved2);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1512 dbgprintf(" lpReserved2=0x%x hStdInput=0x%x hStdOutput=0x%x hStdError=0x%x\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1513 s->lpReserved2, s->hStdInput, s->hStdOutput, s->hStdError);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1514 return 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1515 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1516
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1517 int WINAPI expGetStdHandle(int z)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1518 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1519 dbgprintf("GetStdHandle(0x%x) => 0x%x\n", z+0x1234);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1520 return z+0x1234;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1521 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1522 int WINAPI expGetFileType(int handle)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1523 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1524 dbgprintf("GetFileType(0x%x) => 0x3 = pipe\n", handle);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1525 return 0x3;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1526 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1527 int WINAPI expSetHandleCount(int count)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1528 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1529 dbgprintf("SetHandleCount(0x%x) => 1\n", count);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1530 return 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1531 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1532 int WINAPI expGetACP()
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1533 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1534 dbgprintf("GetACP() => 0\n");
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1535 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1536 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1537 extern WINE_MODREF *MODULE32_LookupHMODULE(HMODULE m);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1538 int WINAPI expGetModuleFileNameA(int module, char* s, int len)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1539 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1540 WINE_MODREF *mr;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1541 int result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1542 // printf("File name of module %X requested\n", module);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1543 if(s==0)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1544 result=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1545 else
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1546 if(len<35)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1547 result=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1548 else
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1549 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1550 result=1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1551 strcpy(s, "c:\\windows\\system\\");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1552 mr=MODULE32_LookupHMODULE(module);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1553 if(mr==0)//oops
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1554 strcat(s, "aviplay.dll");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1555 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1556 if(strrchr(mr->filename, '/')==NULL)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1557 strcat(s, mr->filename);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1558 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1559 strcat(s, strrchr(mr->filename, '/')+1);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1560 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1561 if(!s)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1562 dbgprintf("GetModuleFileNameA(0x%x, 0x%x, %d) => %d\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1563 module, s, len, result);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1564 else
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1565 dbgprintf("GetModuleFileNameA(0x%x, 0x%x, %d) => %d ( '%s' )",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1566 module, s, len, result, s);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1567 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1568 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1569
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1570 int WINAPI expSetUnhandledExceptionFilter(void* filter)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1571 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1572 dbgprintf("SetUnhandledExceptionFilter(0x%x) => 1\n", filter);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1573 return 1;//unsupported and probably won't ever be supported
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1574 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1575 extern char* def_path;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1576 int WINAPI expLoadLibraryA(char* name)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1577 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1578 char qq[256];
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1579 int result;
130
39ceb7a5a9e2 crtdll/memcpy added (req for MJPEG)
arpi_esp
parents: 128
diff changeset
1580 printf("They want library [%s] %s\n", def_path, name);
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1581 if(strncmp(name, "c:\\windows\\", 11)==0)name+=11;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1582 if(name[0]!='/')
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1583 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1584 strcpy(qq, def_path);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1585 strcat(qq, "/");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1586 if(strncmp(name, ".\\", 2)==0)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1587 strcat(qq, name+2);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1588 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1589 strcat(qq, name);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1590 }
130
39ceb7a5a9e2 crtdll/memcpy added (req for MJPEG)
arpi_esp
parents: 128
diff changeset
1591 printf("Entering LoadLibraryA(%s)\n", name);
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1592 result=LoadLibraryA(qq);
130
39ceb7a5a9e2 crtdll/memcpy added (req for MJPEG)
arpi_esp
parents: 128
diff changeset
1593 printf("Returned LoadLibraryA(0x%x='%s'), def_path=%s => 0x%x\n", name, name, def_path, result);
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1594 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1595 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1596 int WINAPI expFreeLibrary(int module)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1597 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1598 int result=FreeLibrary(module);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1599 dbgprintf("FreeLibrary(0x%x) => %d\n", module, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1600 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1601 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1602 void* WINAPI expGetProcAddress(HMODULE mod, char* name)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1603 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1604 int result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1605 if(mod!=0x120)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1606 result=GetProcAddress(mod, name);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1607 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1608 result=LookupExternalByName("kernel32.dll", name);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1609 dbgprintf("GetProcAddress(0x%x, '%s') => 0x%x\n", mod, name, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1610 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1611 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1612
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1613 long WINAPI expCreateFileMappingA(int hFile, void* lpAttr,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1614 long flProtect, long dwMaxHigh, long dwMaxLow, const char* name)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1615 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1616 long result=CreateFileMappingA(hFile, lpAttr, flProtect, dwMaxHigh, dwMaxLow, name);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1617 if(!name)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1618 dbgprintf("CreateFileMappingA(file 0x%x, lpAttr 0x%x,
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1619 flProtect 0x%x, dwMaxHigh 0x%x, dwMaxLow 0x%x, name 0) => %d\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1620 hFile, lpAttr, flProtect, dwMaxHigh, dwMaxLow, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1621 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1622 dbgprintf("CreateFileMappingA(file 0x%x, lpAttr 0x%x,
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1623 flProtect 0x%x, dwMaxHigh 0x%x, dwMaxLow 0x%x, name 0x%x='%s') => %d\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1624 hFile, lpAttr, flProtect, dwMaxHigh, dwMaxLow, name, name, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1625 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1626 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1627
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1628 long WINAPI expOpenFileMappingA(long hFile, long hz, const char* name)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1629 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1630 long result=OpenFileMappingA(hFile, hz, name);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1631 if(!name)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1632 dbgprintf("OpenFileMappingA(0x%x, 0x%x, 0) => %d\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1633 hFile, hz, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1634 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1635 dbgprintf("OpenFileMappingA(0x%x, 0x%x, 0x%x='%s') => %d\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1636 hFile, hz, name, name, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1637 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1638 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1639
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1640 void* WINAPI expMapViewOfFile(HANDLE file, DWORD mode, DWORD offHigh, DWORD offLow, DWORD size)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1641 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1642 dbgprintf("MapViewOfFile(0x%x, 0x%x, 0x%x, 0x%x, size %d) => 0x%x\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1643 file,mode,offHigh,offLow,size,(char*)file+offLow);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1644 return (char*)file+offLow;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1645 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1646
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1647 void* WINAPI expUnmapViewOfFile(void* view)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1648 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1649 dbgprintf("UnmapViewOfFile(0x%x) => 0\n", view);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1650 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1651 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1652
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1653 void* WINAPI expSleep(int time)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1654 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1655 dbgprintf("Sleep(%d) => 0\n", time);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1656 usleep(time);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1657 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1658 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1659 // why does IV32 codec want to call this? I don't know ...
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1660 void* WINAPI expCreateCompatibleDC(int hdc)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1661 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1662 dbgprintf("CreateCompatibleDC(%d) => 0x81\n", hdc);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1663 return (void*)0x81;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1664 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1665
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1666 int WINAPI expGetDeviceCaps(int hdc, int unk)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1667 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1668 dbgprintf("GetDeviceCaps(0x%x, %d) => 0\n", hdc, unk);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1669 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1670 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1671
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1672 WIN_BOOL WINAPI expDeleteDC(int hdc)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1673 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1674 dbgprintf("DeleteDC(0x%x) => 0\n", hdc);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1675 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1676 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1677
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1678 int expwsprintfA(char* string, char* format, ...)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1679 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1680 va_list va;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1681 int result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1682 va_start(va, format);
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1683 result=vsprintf(string, format, va);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1684 dbgprintf("wsprintfA(0x%x, '%s', ...) => %d\n", string, format, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1685 va_end(va);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1686 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1687 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1688
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1689 int WINAPI expGetPrivateProfileIntA(const char* appname, const char* keyname, int default_value, const char* filename)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1690 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1691 int size=255;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1692 char buffer[256];
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1693 char* fullname;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1694 int result;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1695
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1696 buffer[255]=0;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1697 if(!(appname && keyname && filename) )
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1698 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1699 dbgprintf("GetPrivateProfileIntA('%s', '%s', %d, '%s') => %d\n", appname, keyname, default_value, filename, default_value );
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1700 return default_value;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1701 }
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1702 fullname=(char*)malloc(50+strlen(appname)+strlen(keyname)+strlen(filename));
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1703 strcpy(fullname, "Software\\IniFileMapping\\");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1704 strcat(fullname, appname);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1705 strcat(fullname, "\\");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1706 strcat(fullname, keyname);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1707 strcat(fullname, "\\");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1708 strcat(fullname, filename);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1709 result=RegQueryValueExA(HKEY_LOCAL_MACHINE, fullname, NULL, NULL, (int*)buffer, &size);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1710 if((size>=0)&&(size<256))
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1711 buffer[size]=0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1712 // printf("GetPrivateProfileIntA(%s, %s, %s) -> %s\n", appname, keyname, filename, buffer);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1713 free(fullname);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1714 if(result)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1715 result=default_value;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1716 else
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1717 result=atoi(buffer);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1718 dbgprintf("GetPrivateProfileIntA('%s', '%s', %d, '%s') => %d\n", appname, keyname, default_value, filename, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1719 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1720 }
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1721 int WINAPI expGetProfileIntA(const char* appname, const char* keyname, int default_value)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1722 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1723 dbgprintf("GetProfileIntA -> ");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1724 // dbgprintf("GetProfileIntA(%s, %s, %d)\n", appname, keyname, default_value);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1725 return expGetPrivateProfileIntA(appname, keyname, default_value, "default");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1726 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1727
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1728 int WINAPI expGetPrivateProfileStringA(const char* appname, const char* keyname,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1729 const char* def_val, char* dest, unsigned int len, const char* filename)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1730 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1731 int result;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1732 int size;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1733 char* fullname;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1734 dbgprintf("GetPrivateProfileStringA('%s', '%s', def_val '%s', 0x%x, 0x%x, '%s')", appname, keyname, def_val, dest, len, filename );
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1735 if(!(appname && keyname && filename) ) return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1736 fullname=(char*)malloc(50+strlen(appname)+strlen(keyname)+strlen(filename));
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1737 strcpy(fullname, "Software\\IniFileMapping\\");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1738 strcat(fullname, appname);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1739 strcat(fullname, "\\");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1740 strcat(fullname, keyname);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1741 strcat(fullname, "\\");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1742 strcat(fullname, filename);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1743 size=len;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1744 result=RegQueryValueExA(HKEY_LOCAL_MACHINE, fullname, NULL, NULL, (int*)dest, &size);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1745 // printf("GetPrivateProfileStringA(%s, %s, %s, %X, %X, %s)\n", appname, keyname, def_val, dest, len, filename );
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1746 free(fullname);
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1747 if(result)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1748 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1749 strncpy(dest, def_val, size);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1750 if (strlen(def_val)< size) size = strlen(def_val);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1751 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1752 dbgprintf(" => %d ( '%s' )\n", size, dest);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1753 return size;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1754 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1755 int WINAPI expWritePrivateProfileStringA(const char* appname, const char* keyname,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1756 const char* string, const char* filename)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1757 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1758 int size=256;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1759 char* fullname;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1760 dbgprintf("WritePrivateProfileStringA('%s', '%s', '%s', '%s')", appname, keyname, string, filename );
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1761 if(!(appname && keyname && filename) )
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1762 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1763 dbgprintf(" => -1\n");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1764 return -1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1765 }
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1766 fullname=(char*)malloc(50+strlen(appname)+strlen(keyname)+strlen(filename));
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1767 strcpy(fullname, "Software\\IniFileMapping\\");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1768 strcat(fullname, appname);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1769 strcat(fullname, "\\");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1770 strcat(fullname, keyname);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1771 strcat(fullname, "\\");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1772 strcat(fullname, filename);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1773 RegSetValueExA(HKEY_LOCAL_MACHINE, fullname, 0, REG_SZ, (int*)string, strlen(string));
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1774 // printf("RegSetValueExA(%s,%d)\n", string, strlen(string));
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1775 // printf("WritePrivateProfileStringA(%s, %s, %s, %s)\n", appname, keyname, string, filename );
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1776 free(fullname);
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1777 dbgprintf(" => 0\n");
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1778 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1779 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1780
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1781 unsigned int _GetPrivateProfileIntA(const char* appname, const char* keyname, INT default_value, const char* filename)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1782 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1783 return expGetPrivateProfileIntA(appname, keyname, default_value, filename);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1784 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1785 int _GetPrivateProfileStringA(const char* appname, const char* keyname,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1786 const char* def_val, char* dest, unsigned int len, const char* filename)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1787 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1788 return expGetPrivateProfileStringA(appname, keyname, def_val, dest, len, filename);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1789 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1790 int _WritePrivateProfileStringA(const char* appname, const char* keyname,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1791 const char* string, const char* filename)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1792 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1793 return expWritePrivateProfileStringA(appname, keyname, string, filename);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1794 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1795
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1796
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1797
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1798 int WINAPI expDefDriverProc(int _private, int id, int msg, int arg1, int arg2)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1799 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1800 dbgprintf("DefDriverProc(0x%x, 0x%x, 0x%x, 0x%x, 0x%x) => 0\n", _private, id, msg, arg1, arg2);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1801 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1802 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1803
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1804 int WINAPI expSizeofResource(int v1, int v2)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1805 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1806 int result=SizeofResource(v1, v2);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1807 dbgprintf("SizeofResource(0x%x, 0x%x) => %d\n", v1, v2, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1808 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1809 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1810
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1811 int WINAPI expGetLastError()
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1812 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1813 int result=GetLastError();
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1814 dbgprintf("GetLastError() => 0x%x\n", result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1815 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1816 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1817
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1818 void WINAPI expSetLastError(int error)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1819 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1820 dbgprintf("SetLastError(0x%x)\n", error);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1821 SetLastError(error);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1822 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1823
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1824 char* expstrrchr(char* string, int value)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1825 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1826 char* result=strrchr(string, value);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1827 if(result)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1828 dbgprintf("strrchr(0x%x='%s', %d) => 0x%x='%s'", string, string, value, result, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1829 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1830 dbgprintf("strrchr(0x%x='%s', %d) => 0", string, string, value);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1831 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1832 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1833
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1834 char* expstrchr(char* string, int value)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1835 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1836 char* result=strchr(string, value);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1837 if(result)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1838 dbgprintf("strchr(0x%x='%s', %d) => 0x%x='%s'", string, string, value, result, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1839 else
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1840 dbgprintf("strchr(0x%x='%s', %d) => 0", string, string, value);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1841 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1842 }
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1843 int expstrlen(char* str)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1844 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1845 int result=strlen(str);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1846 dbgprintf("strlen(0x%x='%s') => %d\n", str, str, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1847 return result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1848 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1849 int expstrcpy(char* str1, const char* str2)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1850 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1851 int result=strcpy(str1, str2);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1852 dbgprintf("strcpy(0x%x, 0x%x='%s') => %d\n", str1, str2, str2, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1853 return result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1854 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1855 int expstrcmp(const char* str1, const char* str2)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1856 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1857 int result=strcmp(str1, str2);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1858 dbgprintf("strcmp(0x%x='%s', 0x%x='%s') => %d\n", str1, str1, str2, str2, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1859 return result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1860 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1861 int expstrcat(char* str1, const char* str2)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1862 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1863 int result=strcat(str1, str2);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1864 dbgprintf("strcat(0x%x='%s', 0x%x='%s') => %d\n", str1, str1, str2, str2, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1865 return result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1866 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1867 int expmemmove(void* dest, void* src, int n)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1868 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1869 int result=memmove(dest, src, n);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1870 dbgprintf("memmove(0x%x, 0x%x, %d) => %d\n", dest, src, n, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1871 return memmove;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1872 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1873 int expmemcmp(void* dest, void* src, int n)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1874 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1875 int result=memcmp(dest, src, n);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1876 dbgprintf("memcmp(0x%x, 0x%x, %d) => %d\n", dest, src, n, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1877 return result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1878 }
130
39ceb7a5a9e2 crtdll/memcpy added (req for MJPEG)
arpi_esp
parents: 128
diff changeset
1879 int expmemcpy(void* dest, void* src, int n)
39ceb7a5a9e2 crtdll/memcpy added (req for MJPEG)
arpi_esp
parents: 128
diff changeset
1880 {
39ceb7a5a9e2 crtdll/memcpy added (req for MJPEG)
arpi_esp
parents: 128
diff changeset
1881 int result=memcpy(dest, src, n);
39ceb7a5a9e2 crtdll/memcpy added (req for MJPEG)
arpi_esp
parents: 128
diff changeset
1882 dbgprintf("memcpy(0x%x, 0x%x, %d) => %x\n", dest, src, n, result);
39ceb7a5a9e2 crtdll/memcpy added (req for MJPEG)
arpi_esp
parents: 128
diff changeset
1883 return result;
39ceb7a5a9e2 crtdll/memcpy added (req for MJPEG)
arpi_esp
parents: 128
diff changeset
1884 }
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1885 time_t exptime(time_t* t)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1886 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1887 time_t result=time(t);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1888 dbgprintf("time(0x%x) => %d\n", t, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1889 return result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1890 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1891
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1892 int WINAPI expStringFromGUID2(GUID* guid, char* str, int cbMax)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1893 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1894 int result=snprintf(str, cbMax, "%.8x-%.4x-%.4x-%.2x%.2x%.2x%.2x%.2x%.2x%.2x%.2x",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1895 guid->f1, guid->f2, guid->f3,
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1896 (unsigned char)guid->f4[0], (unsigned char)guid->f4[1], (unsigned char)guid->f4[2], (unsigned char)guid->f4[3],
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1897 (unsigned char)guid->f4[4], (unsigned char)guid->f4[5], (unsigned char)guid->f4[6], (unsigned char)guid->f4[7]);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1898 dbgprintf("StringFromGUID2(0x%x, 0x%x='%s', %d) => %d\n", guid, str, str, cbMax, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1899 return result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1900 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1901
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1902
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1903 int WINAPI expGetFileVersionInfoSizeA(const char* name, int* lpHandle)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1904 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1905 dbgprintf("GetFileVersionInfoSizeA(0x%x='%s', 0x%X) => 0\n", name, name, lpHandle);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1906 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1907 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1908
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1909 int WINAPI expIsBadStringPtrW(const short* string, int nchars)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1910 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1911 int result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1912 if(string==0)result=1; else result=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1913 dbgprintf("IsBadStringPtrW(0x%x, %d) => %d", string, nchars, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1914 if(string)wch_print(string);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1915 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1916 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1917 extern long WINAPI InterlockedExchangeAdd( long* dest, long incr )
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1918 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1919 long ret;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1920 __asm__ __volatile__( "lock; xaddl %0,(%1)"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1921 : "=r" (ret) : "r" (dest), "0" (incr) : "memory" );
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1922 return ret;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1923 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1924
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1925 extern long WINAPI expInterlockedIncrement( long* dest )
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1926 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1927 long result=InterlockedExchangeAdd( dest, 1 ) + 1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1928 dbgprintf("InterlockedIncrement(0x%x => %d) => %d\n", dest, *dest, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1929 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1930 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1931 extern long WINAPI expInterlockedDecrement( long* dest )
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1932 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1933 long result=InterlockedExchangeAdd( dest, -1 ) - 1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1934 dbgprintf("InterlockedDecrement(0x%x => %d) => %d\n", dest, *dest, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1935 return result;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1936 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1937
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1938 extern void WINAPI expOutputDebugStringA( const char* string )
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1939 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1940 dbgprintf("OutputDebugStringA(0x%x='%s')\n", string);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1941 fprintf(stderr, "DEBUG: %s\n", string);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1942 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1943
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1944 int WINAPI expGetDC(int hwnd)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1945 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1946 dbgprintf("GetDC(0x%x) => 0\n", hwnd);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1947 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1948 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1949
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1950 int WINAPI expGetDesktopWindow()
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1951 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1952 dbgprintf("GetDesktopWindow() => 0\n");
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1953 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1954 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1955
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1956 int WINAPI expReleaseDC(int hwnd, int hdc)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1957 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1958 dbgprintf("ReleaseDC(0x%x, 0x%x) => 0\n", hwnd, hdc);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1959 return 0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1960 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1961 static int cursor[100];
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1962
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1963 int WINAPI expLoadCursorA(int handle,LPCSTR name)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1964 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1965 dbgprintf("LoadCursorA(%d, 0x%x='%s') => 0x%x\n", handle, name, (int)&cursor[0]);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1966 return (int)&cursor[0];
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1967 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1968 int WINAPI expSetCursor(void *cursor)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1969 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1970 dbgprintf("SetCursor(0x%x) => 0x%x\n", cursor, cursor);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1971 return (int)cursor;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1972 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1973 int WINAPI expGetSystemPaletteEntries(int hdc, int iStartIndex, int nEntries, void* lppe)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1974 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1975 dbgprintf("GetSystemPaletteEntries(0x%x, 0x%x, 0x%x, 0x%x) => 0\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1976 hdc, iStartIndex, nEntries, lppe);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1977 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1978 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1979
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1980 /*
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1981 typedef struct _TIME_ZONE_INFORMATION {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1982 long Bias;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1983 char StandardName[32];
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1984 SYSTEMTIME StandardDate;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1985 long StandardBias;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1986 char DaylightName[32];
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1987 SYSTEMTIME DaylightDate;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1988 long DaylightBias;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1989 } TIME_ZONE_INFORMATION, *LPTIME_ZONE_INFORMATION;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1990 */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1991
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1992 int WINAPI expGetTimeZoneInformation(LPTIME_ZONE_INFORMATION lpTimeZoneInformation)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1993 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1994 const short name[]={'C', 'e', 'n', 't', 'r', 'a', 'l', ' ', 'S', 't', 'a',
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1995 'n', 'd', 'a', 'r', 'd', ' ', 'T', 'i', 'm', 'e', 0};
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1996 const short pname[]={'C', 'e', 'n', 't', 'r', 'a', 'l', ' ', 'D', 'a', 'y',
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1997 'l', 'i', 'g', 'h', 't', ' ', 'T', 'i', 'm', 'e', 0};
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
1998 dbgprintf("GetTimeZoneInformation(0x%x) => TIME_ZONE_ID_STANDARD\n");
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1999 memset(lpTimeZoneInformation, 0, sizeof(TIME_ZONE_INFORMATION));
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2000 lpTimeZoneInformation->Bias=360;//GMT-6
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2001 memcpy(lpTimeZoneInformation->StandardName, name, sizeof(name));
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2002 lpTimeZoneInformation->StandardDate.wMonth=10;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2003 lpTimeZoneInformation->StandardDate.wDay=5;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2004 lpTimeZoneInformation->StandardDate.wHour=2;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2005 lpTimeZoneInformation->StandardBias=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2006 memcpy(lpTimeZoneInformation->DaylightName, pname, sizeof(pname));
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2007 lpTimeZoneInformation->DaylightDate.wMonth=4;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2008 lpTimeZoneInformation->DaylightDate.wDay=1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2009 lpTimeZoneInformation->DaylightDate.wHour=2;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2010 lpTimeZoneInformation->DaylightBias=-60;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2011 return TIME_ZONE_ID_STANDARD;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2012 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2013
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2014 void WINAPI expGetLocalTime(SYSTEMTIME* systime)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2015 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2016 time_t local_time;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2017 struct tm *local_tm;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2018 struct timeval tv;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2019
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2020 dbgprintf("GetLocalTime(0x%x)\n");
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2021 gettimeofday(&tv, NULL);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2022 local_time=tv.tv_sec;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2023 local_tm=localtime(&local_time);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2024
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2025 systime->wYear = local_tm->tm_year + 1900;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2026 systime->wMonth = local_tm->tm_mon + 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2027 systime->wDayOfWeek = local_tm->tm_wday;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2028 systime->wDay = local_tm->tm_mday;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2029 systime->wHour = local_tm->tm_hour;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2030 systime->wMinute = local_tm->tm_min;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2031 systime->wSecond = local_tm->tm_sec;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2032 systime->wMilliseconds = (tv.tv_usec / 1000) % 1000;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2033 dbgprintf(" Year: %d\n Month: %d\n Day of week: %d\n"
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2034 " Day: %d\n Hour: %d\n Minute: %d\n Second: %d\n"
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2035 " Milliseconds: %d\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2036 systime->wYear, systime->wMonth, systime->wDayOfWeek, systime->wDay,
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2037 systime->wHour, systime->wMinute, systime->wSecond, systime->wMilliseconds);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2038 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2039
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2040 int WINAPI expGetSystemTime(SYSTEMTIME* systime)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2041 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2042 time_t local_time;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2043 struct tm *local_tm;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2044 struct timeval tv;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2045
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2046 dbgprintf("GetSystemTime(0x%x)\n", systime);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2047 gettimeofday(&tv, NULL);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2048 local_time=tv.tv_sec;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2049 local_tm=gmtime(&local_time);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2050
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2051 systime->wYear = local_tm->tm_year + 1900;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2052 systime->wMonth = local_tm->tm_mon + 1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2053 systime->wDayOfWeek = local_tm->tm_wday;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2054 systime->wDay = local_tm->tm_mday;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2055 systime->wHour = local_tm->tm_hour;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2056 systime->wMinute = local_tm->tm_min;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2057 systime->wSecond = local_tm->tm_sec;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2058 systime->wMilliseconds = (tv.tv_usec / 1000) % 1000;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2059 dbgprintf(" Year: %d\n Month: %d\n Day of week: %d\n"
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2060 " Day: %d\n Hour: %d\n Minute: %d\n Second: %d\n"
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2061 " Milliseconds: %d\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2062 systime->wYear, systime->wMonth, systime->wDayOfWeek, systime->wDay,
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2063 systime->wHour, systime->wMinute, systime->wSecond, systime->wMilliseconds);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2064 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2065
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2066 int WINAPI expGetEnvironmentVariableA(const char* name, char* field, int size)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2067 {
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2068 char *p;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2069 // printf("%s %x %x\n", name, field, size);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2070 if(field)field[0]=0;
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2071 /*
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2072 p = getenv(name);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2073 if (p) strncpy(field,p,size);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2074 */
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2075 if (strcmp(name,"__MSVCRT_HEAP_SELECT")==0)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2076 strcpy(field,"__GLOBAL_HEAP_SELECTED,1");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2077 dbgprintf("GetEnvironmentVariableA(0x%x='%s', 0x%x, %d) => %d\n", name, name, field, size, strlen(field));
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2078 return strlen(field);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2079 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2080
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2081 void* WINAPI expCoTaskMemAlloc(ULONG cb)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2082 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2083 return my_mreq(cb, 0);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2084 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2085 void WINAPI expCoTaskMemFree(void* cb)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2086 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2087 my_release(cb);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2088 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2089
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2090 void* CoTaskMemAlloc(ULONG cb){return expCoTaskMemAlloc(cb);}
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2091 void CoTaskMemFree(void* cb){expCoTaskMemFree(cb);}
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2092
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2093 struct COM_OBJECT_INFO
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2094 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2095 GUID clsid;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2096 long (*GetClassObject) (GUID* clsid, GUID* iid, void** ppv);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2097 };
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2098
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2099 static struct COM_OBJECT_INFO* com_object_table=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2100 static int com_object_size=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2101 int RegisterComClass(GUID* clsid, GETCLASSOBJECT gcs)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2102 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2103 if(!clsid)return -1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2104 if(!gcs)return -1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2105 com_object_table=realloc(com_object_table, sizeof(struct COM_OBJECT_INFO)*(++com_object_size));
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2106 com_object_table[com_object_size-1].clsid=*clsid;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2107 com_object_table[com_object_size-1].GetClassObject=gcs;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2108 return 0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2109 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2110
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2111 GUID IID_IUnknown={0x00000000, 0x0000, 0x0000,
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2112 {0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46}};
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2113 GUID IID_IClassFactory={0x00000001, 0x0000, 0x0000,
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2114 {0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46}};
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2115
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2116 long WINAPI expCoCreateInstance(GUID* rclsid, struct IUnknown* pUnkOuter,
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2117 long dwClsContext, GUID* riid, void** ppv)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2118 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2119 int i;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2120 struct COM_OBJECT_INFO* ci=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2121 for(i=0; i<com_object_size; i++)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2122 if(!memcmp(rclsid, &com_object_table[i].clsid, sizeof(GUID)))
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2123 ci=&com_object_table[i];
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2124 if(!ci)return 0x80040154;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2125 // in 'real' world we should mess with IClassFactory here
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2126 i=ci->GetClassObject(rclsid, riid, ppv);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2127 return i;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2128 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2129
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2130 long CoCreateInstance(GUID* rclsid, struct IUnknown* pUnkOuter,
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2131 long dwClsContext, GUID* riid, void** ppv)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2132 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2133 return expCoCreateInstance(rclsid, pUnkOuter, dwClsContext, riid, ppv);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2134 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2135
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2136 int WINAPI
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2137 expIsRectEmpty(
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2138 CONST RECT *lprc)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2139 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2140 dbgprintf("IsRectEmpty(0x%x)");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2141 if((!lprc) || (lprc->right==lprc->left) || (lprc->top==lprc->bottom))
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2142 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2143 dbgprintf(" => TRUE\n");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2144 return TRUE;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2145 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2146 dbgprintf(" => FALSE\n");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2147 return FALSE;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2148 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2149
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2150 int _adjust_fdiv=0; //what's this?
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2151
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2152
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2153
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2154
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2155 unsigned int WINAPI expGetTempPathA(unsigned int len, char* path)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2156 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2157 dbgprintf("GetTempPathA(%d, 0x%x)", len, path);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2158 if(len<5)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2159 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2160 dbgprintf(" => 0\n");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2161 return 0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2162 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2163 strcpy(path, "/tmp");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2164 dbgprintf(" => 5 ( '/tmp' )\n");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2165 return 5;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2166 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2167 /*
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2168 FYI:
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2169 typedef struct
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2170 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2171 DWORD dwFileAttributes;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2172 FILETIME ftCreationTime;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2173 FILETIME ftLastAccessTime;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2174 FILETIME ftLastWriteTime;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2175 DWORD nFileSizeHigh;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2176 DWORD nFileSizeLow;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2177 DWORD dwReserved0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2178 DWORD dwReserved1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2179 CHAR cFileName[260];
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2180 CHAR cAlternateFileName[14];
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2181 } WIN32_FIND_DATAA, *LPWIN32_FIND_DATAA;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2182 */
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2183
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2184 HANDLE WINAPI expFindFirstFileA(LPCSTR s, LPWIN32_FIND_DATAA lpfd)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2185 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2186 dbgprintf("FindFirstFileA(0x%x='%s', 0x%x) => 0\n", s, s, lpfd);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2187 strcpy(lpfd->cFileName, "msms001.vwp");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2188 strcpy(lpfd->cAlternateFileName, "msms001.vwp");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2189 return (HANDLE)0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2190 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2191 WIN_BOOL WINAPI expFindNextFileA(HANDLE h,LPWIN32_FIND_DATAA p)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2192 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2193 dbgprintf("FindNextFileA(0x%x, 0x%x) => 0\n", h, p);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2194 return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2195 }
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2196 WIN_BOOL WINAPI expFindClose(HANDLE h)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2197 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2198 dbgprintf("FindClose(0x%x) => 0\n", h);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2199 return 0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2200 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2201 UINT WINAPI expSetErrorMode(UINT i)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2202 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2203 dbgprintf("SetErrorMode(%d) => 0\n", i);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2204 return 0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2205 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2206 UINT WINAPI expGetWindowsDirectoryA(LPSTR s,UINT c)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2207 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2208 char windir[]="c:\\windows";
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2209 int result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2210 strncpy(s, windir, c);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2211 result=1+((c<strlen(windir))?c:strlen(windir));
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2212 dbgprintf("GetWindowsDirectoryA(0x%x, %d) => %d\n", s, c, result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2213 return result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2214 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2215
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2216 WIN_BOOL WINAPI expDeleteFileA(LPCSTR s)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2217 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2218 dbgprintf("DeleteFileA(0x%x='%s') => 0\n", s, s);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2219 return 0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2220 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2221 WIN_BOOL WINAPI expFileTimeToLocalFileTime(const FILETIME* cpf, LPFILETIME pf)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2222 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2223 dbgprintf("FileTimeToLocalFileTime(0x%x, 0x%x) => 0\n", cpf, pf);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2224 return 0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2225 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2226
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2227 UINT WINAPI expGetTempFileNameA(LPCSTR cs1,LPCSTR cs2,UINT i,LPSTR ps)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2228 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2229 char mask[16]="/tmp/AP_XXXXXX";
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2230 int result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2231 dbgprintf("GetTempFileNameA(0x%x='%s', 0x%x='%s', %d, 0x%x)", cs1, cs1, cs2, cs2, i, ps);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2232 if(i && i<10)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2233 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2234 dbgprintf(" => -1\n");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2235 return -1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2236 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2237 result=mkstemp(mask);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2238 sprintf(ps, "AP%d", result);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2239 dbgprintf(" => %d\n", strlen(ps));
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2240 return strlen(ps);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2241 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2242 //
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2243 // This func might need proper implementation if we want AngelPotion codec.
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2244 // They try to open APmpeg4v1.apl with it.
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2245 // DLL will close opened file with CloseHandle().
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2246 //
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2247 HANDLE WINAPI expCreateFileA(LPCSTR cs1,DWORD i1,DWORD i2,
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2248 LPSECURITY_ATTRIBUTES p1, DWORD i3,DWORD i4,HANDLE i5)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2249 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2250 dbgprintf("CreateFileA(0x%x='%s', %d, %d, 0x%x, %d, %d, 0x%x)\n", cs1, cs1, i1,
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2251 i2, p1, i3, i4, i5);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2252 if((!cs1) || (strlen(cs1)<2))return -1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2253 if(strncmp(cs1, "AP", 2))
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2254 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2255 int result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2256 char* tmp=(char*)malloc(strlen(def_path)+50);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2257 strcpy(tmp, def_path);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2258 strcat(tmp, "/");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2259 strcat(tmp, "APmpg4v1.apl");
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2260 result=open(tmp, O_RDONLY);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2261 free(tmp);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2262 return result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2263 };
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2264 return atoi(cs1+2);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2265 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2266 static char sysdir[]=".";
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2267 LPCSTR WINAPI expGetSystemDirectoryA()
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2268 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2269 dbgprintf("GetSystemDirectoryA() => 0x%x='%s'\n", sysdir, sysdir);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2270 return sysdir;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2271 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2272 WIN_BOOL WINAPI expReadFile(HANDLE h,LPVOID pv,DWORD size,LPDWORD rd,LPOVERLAPPED unused)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2273 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2274 int result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2275 dbgprintf("ReadFile(%d, 0x%x, %d -> 0x%x)\n", h, pv, size, rd);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2276 result=read(h, pv, size);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2277 if(rd)*rd=result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2278 if(!result)return 0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2279 return 1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2280 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2281
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2282 WIN_BOOL WINAPI expWriteFile(HANDLE h,LPCVOID pv,DWORD size,LPDWORD wr,LPOVERLAPPED unused)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2283 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2284 int result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2285 dbgprintf("WriteFile(%d, 0x%x, %d -> 0x%x)\n", h, pv, size, wr);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2286 if(h==1234)h=1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2287 result=write(h, pv, size);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2288 if(wr)*wr=result;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2289 if(!result)return 0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2290 return 1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2291 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2292 DWORD WINAPI expSetFilePointer(HANDLE h, LONG val, LPLONG ext, DWORD whence)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2293 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2294 int wh;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2295 dbgprintf("SetFilePointer(%d, %d, 0x%x, %d)\n", h, val, ext, whence);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2296 //why would DLL want temporary file with >2Gb size?
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2297 switch(whence)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2298 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2299 case FILE_BEGIN:
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2300 wh=SEEK_SET;break;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2301 case FILE_END:
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2302 wh=SEEK_END;break;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2303 case FILE_CURRENT:
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2304 wh=SEEK_CUR;break;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2305 default:
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2306 return -1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2307 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2308 return lseek(h, val, wh);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2309 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2310
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2311 HDRVR WINAPI expOpenDriverA(LPCSTR szDriverName, LPCSTR szSectionName,
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2312 LPARAM lParam2)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2313 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2314 dbgprintf("OpenDriverA(0x%x='%s', 0x%x='%s', 0x%x) => -1\n", szDriverName, szDriverName, szSectionName, szSectionName, lParam2);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2315 return -1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2316 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2317 HDRVR WINAPI expOpenDriver(LPCSTR szDriverName, LPCSTR szSectionName,
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2318 LPARAM lParam2)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2319 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2320 dbgprintf("OpenDriver(0x%x='%s', 0x%x='%s', 0x%x) => -1\n", szDriverName, szDriverName, szSectionName, szSectionName, lParam2);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2321 return -1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2322 }
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2323
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2324
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2325 WIN_BOOL
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2326 WINAPI
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2327 expGetProcessAffinityMask(
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2328 HANDLE hProcess,
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2329 LPDWORD lpProcessAffinityMask,
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2330 LPDWORD lpSystemAffinityMask
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2331 )
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2332 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2333 dbgprintf("GetProcessAffinityMask(0x%x, 0x%x, 0x%x) => 1\n",
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2334 hProcess, lpProcessAffinityMask, lpSystemAffinityMask);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2335 if(lpProcessAffinityMask)*lpProcessAffinityMask=1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2336 if(lpSystemAffinityMask)*lpSystemAffinityMask=1;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2337 return 1;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2338 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2339
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2340
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2341
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2342
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2343
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2344
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2345
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2346
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2347
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2348
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2349
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2350
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2351 struct exports
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2352 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2353 char name[64];
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2354 int id;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2355 void* func;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2356 };
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2357 struct libs
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2358 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2359 char name[64];
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2360 int length;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2361 struct exports* exps;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2362 };
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2363
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2364 #define FF(X,Y) \
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2365 {#X, Y, (void*)exp##X},
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2366
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2367 struct exports exp_kernel32[]={
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2368 FF(IsBadWritePtr, 357)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2369 FF(IsBadReadPtr, 354)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2370 FF(IsBadStringPtrW, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2371 FF(DisableThreadLibraryCalls, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2372 FF(CreateThread, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2373 FF(CreateEventA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2374 FF(SetEvent, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2375 FF(ResetEvent, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2376 FF(WaitForSingleObject, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2377 FF(GetSystemInfo, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2378 FF(GetVersion, 332)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2379 FF(HeapCreate, 461)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2380 FF(HeapAlloc, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2381 FF(HeapDestroy, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2382 FF(HeapFree, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2383 FF(HeapSize, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2384 FF(GetProcessHeap, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2385 FF(VirtualAlloc, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2386 FF(VirtualFree, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2387 FF(InitializeCriticalSection, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2388 FF(EnterCriticalSection, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2389 FF(LeaveCriticalSection, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2390 FF(DeleteCriticalSection, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2391 FF(TlsAlloc, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2392 FF(TlsFree, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2393 FF(TlsGetValue, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2394 FF(TlsSetValue, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2395 FF(GetCurrentThreadId, -1)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2396 FF(GetCurrentProcess, -1)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2397 FF(LocalAlloc, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2398 FF(LocalLock, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2399 FF(GlobalAlloc, -1)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2400 FF(GlobalReAlloc, -1)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2401 FF(GlobalLock, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2402 FF(MultiByteToWideChar, 427)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2403 FF(WideCharToMultiByte, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2404 FF(GetVersionExA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2405 FF(CreateSemaphoreA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2406 FF(QueryPerformanceCounter, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2407 FF(QueryPerformanceFrequency, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2408 FF(LocalHandle, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2409 FF(LocalUnlock, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2410 FF(LocalFree, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2411 FF(GlobalHandle, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2412 FF(GlobalUnlock, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2413 FF(GlobalFree, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2414 FF(LoadResource, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2415 FF(ReleaseSemaphore, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2416 FF(FindResourceA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2417 FF(LockResource, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2418 FF(FreeResource, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2419 FF(SizeofResource, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2420 FF(CloseHandle, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2421 FF(GetCommandLineA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2422 FF(GetEnvironmentStringsW, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2423 FF(FreeEnvironmentStringsW, -1)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2424 FF(FreeEnvironmentStringsA, -1)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2425 FF(GetEnvironmentStrings, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2426 FF(GetStartupInfoA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2427 FF(GetStdHandle, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2428 FF(GetFileType, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2429 FF(SetHandleCount, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2430 FF(GetACP, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2431 FF(GetModuleFileNameA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2432 FF(SetUnhandledExceptionFilter, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2433 FF(LoadLibraryA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2434 FF(GetProcAddress, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2435 FF(FreeLibrary, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2436 FF(CreateFileMappingA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2437 FF(OpenFileMappingA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2438 FF(MapViewOfFile, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2439 FF(UnmapViewOfFile, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2440 FF(Sleep, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2441 FF(GetModuleHandleA, -1)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2442 FF(GetProfileIntA, -1)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2443 FF(GetPrivateProfileIntA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2444 FF(GetPrivateProfileStringA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2445 FF(WritePrivateProfileStringA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2446 FF(GetLastError, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2447 FF(SetLastError, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2448 FF(InterlockedIncrement, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2449 FF(InterlockedDecrement, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2450 FF(GetTimeZoneInformation, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2451 FF(OutputDebugStringA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2452 FF(GetLocalTime, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2453 FF(GetSystemTime, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2454 FF(GetEnvironmentVariableA, -1)
121
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
2455 FF(RtlZeroMemory,-1)
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
2456 FF(RtlMoveMemory,-1)
94a1a9f52050 added RtlMoveMem (for CRAM support)
arpi_esp
parents: 1
diff changeset
2457 FF(RtlFillMemory,-1)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2458 FF(GetTempPathA,-1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2459 FF(FindFirstFileA,-1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2460 FF(FindNextFileA,-1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2461 FF(FindClose,-1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2462 FF(FileTimeToLocalFileTime,-1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2463 FF(DeleteFileA,-1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2464 FF(ReadFile,-1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2465 FF(WriteFile,-1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2466 FF(SetFilePointer,-1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2467 FF(GetTempFileNameA,-1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2468 FF(CreateFileA,-1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2469 FF(GetSystemDirectoryA,-1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2470 FF(GetWindowsDirectoryA,-1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2471 FF(SetErrorMode, -1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2472 FF(IsProcessorFeaturePresent, -1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2473 FF(GetProcessAffinityMask, -1)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2474 };
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2475
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2476 struct exports exp_msvcrt[]={
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2477 FF(malloc, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2478 FF(_initterm, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2479 FF(free, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2480 {"??3@YAXPAX@Z", -1, expdelete},
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2481 {"??2@YAPAXI@Z", -1, expnew},
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2482 {"_adjust_fdiv", -1, (void*)&_adjust_fdiv},
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2483 FF(strrchr, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2484 FF(strchr, -1)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2485 FF(strlen, -1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2486 FF(strcpy, -1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2487 FF(strcmp, -1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2488 FF(strcat, -1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2489 FF(memmove, -1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2490 FF(memcmp, -1)
130
39ceb7a5a9e2 crtdll/memcpy added (req for MJPEG)
arpi_esp
parents: 128
diff changeset
2491 //FF(memcpy, -1)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2492 FF(time, -1)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2493 };
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2494 struct exports exp_winmm[]={
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2495 FF(GetDriverModuleHandle, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2496 FF(timeGetTime, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2497 FF(DefDriverProc, -1)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2498 FF(OpenDriverA, -1)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2499 FF(OpenDriver, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2500 };
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2501 struct exports exp_user32[]={
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2502 FF(LoadStringA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2503 FF(wsprintfA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2504 FF(GetDC, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2505 FF(GetDesktopWindow, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2506 FF(ReleaseDC, -1)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2507 FF(IsRectEmpty, -1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2508 FF(LoadCursorA,-1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2509 FF(SetCursor,-1)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2510 };
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2511 struct exports exp_advapi32[]={
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2512 FF(RegOpenKeyA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2513 FF(RegOpenKeyExA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2514 FF(RegCreateKeyExA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2515 FF(RegQueryValueExA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2516 FF(RegSetValueExA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2517 FF(RegCloseKey, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2518 };
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2519 struct exports exp_gdi32[]={
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2520 FF(CreateCompatibleDC, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2521 FF(GetDeviceCaps, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2522 FF(DeleteDC, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2523 FF(GetSystemPaletteEntries, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2524 };
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2525 struct exports exp_version[]={
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2526 FF(GetFileVersionInfoSizeA, -1)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2527 };
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2528 struct exports exp_ole32[]={
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2529 FF(CoTaskMemAlloc, -1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2530 FF(CoTaskMemFree, -1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2531 FF(CoCreateInstance, -1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2532 FF(StringFromGUID2, -1)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2533 };
130
39ceb7a5a9e2 crtdll/memcpy added (req for MJPEG)
arpi_esp
parents: 128
diff changeset
2534 struct exports exp_crtdll[]={
39ceb7a5a9e2 crtdll/memcpy added (req for MJPEG)
arpi_esp
parents: 128
diff changeset
2535 FF(memcpy, -1)
39ceb7a5a9e2 crtdll/memcpy added (req for MJPEG)
arpi_esp
parents: 128
diff changeset
2536 };
39ceb7a5a9e2 crtdll/memcpy added (req for MJPEG)
arpi_esp
parents: 128
diff changeset
2537
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2538 #define LL(X) \
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2539 {#X".dll", sizeof(exp_##X)/sizeof(struct exports), exp_##X},
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2540
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2541 struct libs libraries[]={
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2542 LL(kernel32)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2543 LL(msvcrt)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2544 LL(winmm)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2545 LL(user32)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2546 LL(advapi32)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2547 LL(gdi32)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2548 LL(version)
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2549 LL(ole32)
130
39ceb7a5a9e2 crtdll/memcpy added (req for MJPEG)
arpi_esp
parents: 128
diff changeset
2550 LL(crtdll)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2551 };
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2552
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2553 void* LookupExternal(const char* library, int ordinal)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2554 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2555 char* answ;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2556 int i,j;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2557 if(library==0)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2558 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2559 printf("ERROR: library=0\n");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2560 return (void*)ext_unknown;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2561 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2562 printf("External func %s:%d\n", library, ordinal);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2563 // printf("%x %x\n", &unk_exp1, &unk_exp2);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2564
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2565 for(i=0; i<sizeof(libraries)/sizeof(struct libs); i++)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2566 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2567 if(strcasecmp(library, libraries[i].name))
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2568 continue;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2569 for(j=0; j<libraries[i].length; j++)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2570 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2571 if(ordinal!=libraries[i].exps[j].id)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2572 continue;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2573 printf("Hit: 0x%08X\n", libraries[i].exps[j].func);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2574 return libraries[i].exps[j].func;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2575 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2576 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2577 if(pos>150)return 0;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2578 answ=(char*)extcode+pos*0x64;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2579 memcpy(answ, &unk_exp1, 0x64);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2580 *(int*)(answ+9)=pos;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2581 *(int*)(answ+47)-=((int)answ-(int)&unk_exp1);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2582 sprintf(export_names[pos], "%s:%d", library, ordinal);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2583 pos++;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2584 return (void*)answ;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2585 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2586
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2587 void* LookupExternalByName(const char* library, const char* name)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2588 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2589 char* answ;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2590 int i,j;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2591 // return (void*)ext_unknown;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2592 if(library==0)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2593 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2594 printf("ERROR: library=0\n");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2595 return (void*)ext_unknown;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2596 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2597 if(name==0)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2598 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2599 printf("ERROR: name=0\n");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2600 return (void*)ext_unknown;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2601 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2602 // printf("External func %s:%s\n", library, name);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2603 for(i=0; i<sizeof(libraries)/sizeof(struct libs); i++)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2604 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2605 if(strcasecmp(library, libraries[i].name))
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2606 continue;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2607 for(j=0; j<libraries[i].length; j++)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2608 {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2609 if(strcmp(name, libraries[i].exps[j].name))
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2610 continue;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2611 // printf("Hit: 0x%08X\n", libraries[i].exps[j].func);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2612 return libraries[i].exps[j].func;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2613 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2614 }
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2615 // printf("%s %s\n", library, name);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2616 if(pos>150)return 0;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2617 strcpy(export_names[pos], name);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2618 answ=(char*)extcode+pos*0x64;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2619 memcpy(answ, &unk_exp1, 0x64);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2620 *(int*)(answ+9)=pos;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2621 *(int*)(answ+47)-=((int)answ-(int)&unk_exp1);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2622 pos++;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2623 return (void*)answ;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2624 // memcpy(extcode, &unk_exp1, 0x64);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2625 // *(int*)(extcode+52)-=((int)extcode-(int)&unk_exp1);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2626 // return (void*)extcode;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2627 // printf("Unknown func %s:%s\n", library, name);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2628 // return (void*)ext_unknown;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2629 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2630
128
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2631 int my_garbagecollection()
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2632 {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2633 #ifdef GARBAGE
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2634 alc_list* pp,*ppsv;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2635 mutex_list* pm,*pmsv;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2636 int unfree,unfreecnt;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2637 if (mlist != NULL) {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2638 pm=mlist;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2639 for(;pm;) {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2640 if (pm->prev) pm->prev->next=pm->next;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2641 if (pm->next) pm->next->prev=pm->prev;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2642 if (pm == mlist) mlist=pm->prev;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2643 if (pm->pm) {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2644 pthread_mutex_destroy(pm->pm);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2645 my_release(pm->pm);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2646 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2647 if (pm->pc) {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2648 pthread_cond_destroy(pm->pc);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2649 my_release(pm->pc);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2650 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2651 pmsv = pm;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2652 pm=pm->prev;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2653 my_release(pmsv);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2654 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2655 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2656
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2657 if (alclist==NULL) return 0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2658
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2659 pp=alclist;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2660 unfree=unfreecnt=0;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2661 for(;pp;) {
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2662 unfree+=pp->size;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2663 unfreecnt++;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2664 if (pp->prev)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2665 pp->prev->next=pp->next;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2666 if (pp->next)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2667 pp->next->prev=pp->prev;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2668 if (pp == alclist)
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2669 alclist=pp->prev;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2670 free(pp->addr);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2671 ppsv = pp;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2672 pp=pp->prev;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2673 free(ppsv);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2674 alccnt--;
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2675 }
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2676 printf("Total Unfree %d bytes cnt %d [%x,%d]\n",unfree,unfreecnt,alclist,alccnt);
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2677 #endif
28091b3caff9 DLL loader updated from avifile-0.60beta4
arpi_esp
parents: 121
diff changeset
2678 }