Last change
on this file since 354 was 354, checked in by stevenhl, 17 years ago |
Import untested baseline cmedia sources, work products and binaries
Binaries and work products should be deleted from repository.
once new builds are verified to work.
|
File size:
1.8 KB
|
Line | |
---|
1 | /************************* START OCuF SPECIFICATIONIS ***
|
---|
2 | *
|
---|
3 | * SOURCE FILE NAME: VSDINI2.C
|
---|
4 | *
|
---|
5 | * DESCRIPTIVE NAME: VSD Entry Point Forwarder
|
---|
6 | *
|
---|
7 | * COPYRIGHT: IBM Confidential
|
---|
8 | * Copyright (c) IBM Corporation 1991
|
---|
9 | * All Rights Reserved
|
---|
10 | *
|
---|
11 | * STATUS: OS/2 Release 2.x
|
---|
12 | *
|
---|
13 | * FUNCTION: This module contains a forwarder for the VSD entry point
|
---|
14 | * which is necessary because
|
---|
15 | *
|
---|
16 | ************************** END OF SPECIFICATIONS **************************/
|
---|
17 |
|
---|
18 | #define INCL_NOPMAPI
|
---|
19 | #define INCL_DOS
|
---|
20 | #define INCL_ERRORS
|
---|
21 | #define INCL_RESOURCES
|
---|
22 |
|
---|
23 |
|
---|
24 | #include <os2.h>
|
---|
25 | #include <os2me.h>
|
---|
26 | #include <mcd.h>
|
---|
27 | #include <vsdcmds.h>
|
---|
28 |
|
---|
29 | #ifndef POWERPC
|
---|
30 | #pragma linkage (_DLL_InitTerm, system)
|
---|
31 | #endif
|
---|
32 |
|
---|
33 | ULONG _VSD_InitTerm (ULONG hModhandle, ULONG Flag);
|
---|
34 |
|
---|
35 | ULONG _DLL_InitTerm (ULONG hModhandle, ULONG Flag)
|
---|
36 | {
|
---|
37 | return (_VSD_InitTerm (hModhandle, Flag));
|
---|
38 | }
|
---|
39 |
|
---|
40 | ULONG APIENTRY MM_VSDEntry( HVSD hvsd,
|
---|
41 | ULONG ulFunc,
|
---|
42 | ULONG ulFlags,
|
---|
43 | PVOID pRequest );
|
---|
44 |
|
---|
45 | ULONG APIENTRY MM_VSDLOGEntry( HVSD hvsd,
|
---|
46 | ULONG ulFunc,
|
---|
47 | ULONG ulFlags,
|
---|
48 | PVOID pRequest );
|
---|
49 |
|
---|
50 | ULONG APIENTRY VSDEntry( HVSD hvsd,
|
---|
51 | ULONG ulFunc,
|
---|
52 | ULONG ulFlags,
|
---|
53 | PVOID pRequest )
|
---|
54 |
|
---|
55 | {
|
---|
56 |
|
---|
57 | return(MM_VSDEntry( hvsd,
|
---|
58 | ulFunc,
|
---|
59 | ulFlags,
|
---|
60 | pRequest ) );
|
---|
61 |
|
---|
62 | }
|
---|
63 |
|
---|
64 | ULONG APIENTRY VSDLOGEntry( HVSD hvsd,
|
---|
65 | ULONG ulFunc,
|
---|
66 | ULONG ulFlags,
|
---|
67 | PVOID pRequest )
|
---|
68 |
|
---|
69 | {
|
---|
70 |
|
---|
71 | return(MM_VSDLOGEntry( hvsd,
|
---|
72 | ulFunc,
|
---|
73 | ulFlags,
|
---|
74 | pRequest ) );
|
---|
75 |
|
---|
76 | }
|
---|
77 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.