source: sbliveos2/trunk/install/rcstub.c@ 195

Last change on this file since 195 was 192, checked in by sandervl, 24 years ago

rudi's updates

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.2 KB
Line 
1/* $Id: rcstub.c 192 2001-09-28 12:11:20Z sandervl $ */
2
3/*static char *SCCSID = "@(#)rcstub.c 13.1 93/07/15";*/
4/************************ START OF SPECIFICATIONS ***************************/
5/* */
6/* SOURCE FILE NAME: RCSTUB.C */
7/* */
8/* DESCRIPTIVE NAME: Stub 'C' file used to build the CARDINFO.RC file */
9/* into CARDINFO.DLL. */
10/* */
11/****************************************************************************/
12/* */
13/* COPYRIGHT Copyright (C) 1992 IBM Corporation */
14/* */
15/* The following IBM OS/2 2.1 source code is provided to you solely for */
16/* the purpose of assisting you in your development of OS/2 2.x device */
17/* drivers. You may use this code in accordance with the IBM License */
18/* Agreement provided in the IBM Device Driver Source Kit for OS/2. This */
19/* Copyright statement may not be removed. */
20/* */
21/****************************************************************************/
22/* */
23/* STATUS: DDK #3 1993 */
24/* */
25/* ENTRY POINT: RCSTUB */
26/* */
27/*************************** END OF SPECIFICATIONS **************************/
28
29#define INCL_NOPMAPI
30#define INCL_NOBASEAPI
31#include <os2.h>
32
33// We need to make sure, that we have some code *AND* some data.
34// Otherwise, MINSTALL will crash. For the same reason, turn off
35// WLINK option "Eliminate" !
36
37
38UCHAR uDummy = 0;
39
40
41VOID APIENTRY RCSTUB(VOID)
42{
43}
44
45
Note: See TracBrowser for help on using the repository browser.