annotate loader/win32.c @ 128:28091b3caff9

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