VirtualBox

source: kStuff/trunk/kLdr/testcase/tstDllMain.c@ 40

Last change on this file since 40 was 29, checked in by bird, 16 years ago

Finally got around execute the switch to the MIT license.

  • Property svn:keywords set to Id Revision
File size: 4.8 KB
Line 
1/* $Id: tstDllMain.c 29 2009-07-01 20:30:29Z bird $ */
2/** @file
3 * kLdr testcase.
4 */
5
6/*
7 * Copyright (c) 2006-2007 Knut St. Osmundsen <[email protected]>
8 *
9 * Permission is hereby granted, free of charge, to any person
10 * obtaining a copy of this software and associated documentation
11 * files (the "Software"), to deal in the Software without
12 * restriction, including without limitation the rights to use,
13 * copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the
15 * Software is furnished to do so, subject to the following
16 * conditions:
17 *
18 * The above copyright notice and this permission notice shall be
19 * included in all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
23 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
25 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
26 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28 * OTHER DEALINGS IN THE SOFTWARE.
29 */
30
31/*******************************************************************************
32* Header Files *
33*******************************************************************************/
34#include "tst.h"
35
36#if K_OS == K_OS_OS2
37# define INCL_BASE
38# include <os2.h>
39# include <string.h>
40
41#elif K_OS == K_OS_WINDOWS
42# include <windows.h>
43# include <string.h>
44
45#elif K_OS == K_OS_DARWIN
46# include <unistd.h>
47# include <string.h>
48
49#else
50# error "port me"
51#endif
52
53
54/*******************************************************************************
55* Internal Functions *
56*******************************************************************************/
57void tstWrite(const char *psz);
58
59
60
61#if K_OS == K_OS_OS2
62/**
63 * OS/2 DLL 'main'
64 */
65ULONG _System _DLL_InitTerm(HMODULE hmod, ULONG fFlags)
66{
67 switch (fFlags)
68 {
69 case 0:
70 tstWrite("init: ");
71 tstWrite(g_pszName);
72 tstWrite("\n");
73 return TRUE;
74
75 case 1:
76 tstWrite("term: ");
77 tstWrite(g_pszName);
78 tstWrite("\n");
79 return TRUE;
80
81 default:
82 tstWrite("!invalid!: ");
83 tstWrite(g_pszName);
84 tstWrite("\n");
85 return FALSE;
86 }
87}
88
89#elif K_OS == K_OS_WINDOWS
90
91/**
92 * OS/2 DLL 'main'
93 */
94BOOL __stdcall DllMain(HANDLE hDllHandle, DWORD dwReason, LPVOID lpReserved)
95{
96 switch (dwReason)
97 {
98 case DLL_PROCESS_ATTACH:
99 tstWrite("init: ");
100 tstWrite(g_pszName);
101 tstWrite("\n");
102 return TRUE;
103
104 case DLL_PROCESS_DETACH:
105 tstWrite("term: ");
106 tstWrite(g_pszName);
107 tstWrite("\n");
108 return TRUE;
109
110 case DLL_THREAD_ATTACH:
111 tstWrite("thread init: ");
112 tstWrite(g_pszName);
113 tstWrite("\n");
114 return TRUE;
115
116 case DLL_THREAD_DETACH:
117 tstWrite("thread term: ");
118 tstWrite(g_pszName);
119 tstWrite("\n");
120 return TRUE;
121
122 default:
123 tstWrite("!invalid!: ");
124 tstWrite(g_pszName);
125 tstWrite("\n");
126 return FALSE;
127 }
128}
129
130#elif K_OS == K_OS_DARWIN
131/* later */
132
133#else
134# error "port me"
135#endif
136
137
138/**
139 * Writes a string with unix lineendings.
140 *
141 * @param pszMsg The string.
142 */
143void tstWrite(const char *pszMsg)
144{
145#if K_OS == K_OS_OS2 || K_OS == K_OS_WINDOWS
146 /*
147 * Line by line.
148 */
149 ULONG cbWritten;
150 const char *pszNl = strchr(pszMsg, '\n');
151
152 while (pszNl)
153 {
154 cbWritten = pszNl - pszMsg;
155
156#if K_OS == K_OS_OS2
157 if (cbWritten)
158 DosWrite((HFILE)2, pszMsg, cbWritten, &cbWritten);
159 DosWrite((HFILE)2, "\r\n", 2, &cbWritten);
160#else
161 if (cbWritten)
162 WriteFile((HANDLE)STD_ERROR_HANDLE, pszMsg, cbWritten, &cbWritten, NULL);
163 WriteFile((HANDLE)STD_ERROR_HANDLE, "\r\n", 2, &cbWritten, NULL);
164#endif
165
166 /* next */
167 pszMsg = pszNl + 1;
168 pszNl = strchr(pszMsg, '\n');
169 }
170
171 /*
172 * Remaining incomplete line.
173 */
174 if (*pszMsg)
175 {
176 cbWritten = strlen(pszMsg);
177#if K_OS == K_OS_OS2
178 DosWrite((HFILE)2, pszMsg, cbWritten, &cbWritten);
179#else
180 WriteFile((HANDLE)STD_ERROR_HANDLE, pszMsg, cbWritten, &cbWritten, NULL);
181#endif
182 }
183
184#elif K_OS == K_OS_DARWIN
185 write(STDERR_FILENO, pszMsg, strlen(pszMsg));
186
187#else
188# error "port me"
189#endif
190}
191
192
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette