]> cygwin.com Git - cygwin-apps/setup.git/blame - autoload.c
2002-05-11 Robert Collins <rbtcollins@hotmail.com>
[cygwin-apps/setup.git] / autoload.c
CommitLineData
a99bdfd8
DD
1/*
2 * Copyright (c) 2000, Red Hat, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
11 *
12 * Written by DJ Delorie <dj@cygnus.com>
13 *
14 */
b24c88b3
RC
15#if 0
16static const char *cvsid = "\n%%% $Id$\n";
17#endif
8507f105 18
a99bdfd8
DD
19#include "win32.h"
20
21typedef struct {
22 char *name;
23 HINSTANCE handle;
24} DllInfo;
25
26#define DLL(n) static DllInfo n ## _info __asm__ (#n "_info") = { #n, 0}
27
28#define Auto(dll, func, size) \
29 __asm__ ("\t.data"); \
30 __asm__ ("\t.global\t_" #func "@" #size); \
31 __asm__ ("_" #func "@" #size ":"); \
32 __asm__ ("\tcall\tautoload_common"); \
33 __asm__ ("\t.long\t" #dll "_info"); \
34 __asm__ ("\t.ascii\t\"" #func "\\0\"")
35
36DLL (wininet);
37
4a83b7b0 38Auto (wininet, InternetAttemptConnect, 4);
a99bdfd8
DD
39Auto (wininet, InternetCloseHandle, 4);
40Auto (wininet, InternetGetLastResponseInfoA, 12);
41Auto (wininet, InternetOpenA, 20);
42Auto (wininet, InternetOpenUrlA, 24);
43Auto (wininet, InternetReadFile, 16);
44Auto (wininet, InternetSetOptionA, 16);
4a83b7b0
DD
45Auto (wininet, InternetQueryOptionA, 16);
46Auto (wininet, HttpQueryInfoA, 20);
47Auto (wininet, HttpSendRequestA, 20);
a99bdfd8 48
acbae401
CV
49DLL (advapi32);
50
51Auto (advapi32, AddAccessAllowedAce, 16);
52Auto (advapi32, AllocateAndInitializeSid, 44);
53Auto (advapi32, FreeSid, 4);
54Auto (advapi32, InitializeAcl, 12);
55Auto (advapi32, OpenProcessToken, 12);
56Auto (advapi32, SetTokenInformation, 16);
57
a99bdfd8
DD
58typedef struct {
59 DllInfo *dll;
60 char name[100];
61} AutoEntry;
62
63static void autoload_common () __asm__ ("autoload_common");
64
65static void
66autoload_common (int x)
67{
68 int fp, rel;
69 unsigned char *proc;
70 HINSTANCE h;
71 AutoEntry *a;
72
73 a = *(AutoEntry **)(&x - 1);
74 if (a->dll->handle == 0)
75 {
76 h = LoadLibrary (a->dll->name);
77 a->dll->handle = h;
78 }
79 fp = (int) GetProcAddress (a->dll->handle, a->name);
80 proc = ((unsigned char *)a) - 5;
81 rel = fp - (int)(a); /* now it's a relative call */
82 *proc++ = 0xe9; /* jump near 32-bit relative */
83 *proc++ = rel;
84 *proc++ = rel>>8;
85 *proc++ = rel>>16;
86 *proc++ = rel>>24;
87
88 *(int *)(&x-1) = (int)proc-5;
89}
This page took 0.037937 seconds and 5 git commands to generate.