Line | |
---|
1 | /*
|
---|
2 | * PE2LX RCDATA resources
|
---|
3 | *
|
---|
4 | * Copyright 1998 Sander van Leeuwen (sandervl@xs4all.nl)
|
---|
5 | *
|
---|
6 | *
|
---|
7 | * Project Odin Software License can be found in LICENSE.TXT
|
---|
8 | *
|
---|
9 | */
|
---|
10 | #define INCL_DOSFILEMGR /* File Manager values */
|
---|
11 | #define INCL_DOSERRORS /* DOS Error values */
|
---|
12 | #define INCL_DOSPROCESS /* DOS Process values */
|
---|
13 | #define INCL_DOSMISC /* DOS Miscellanous values */
|
---|
14 | #define INCL_WIN
|
---|
15 | #include <os2.h>
|
---|
16 | #include <stdio.h>
|
---|
17 | #include <string.h>
|
---|
18 | #include <stdlib.h>
|
---|
19 | #include <iostream.h>
|
---|
20 | #include <string.h>
|
---|
21 | #include "lx.h"
|
---|
22 | #include "rcdata.h"
|
---|
23 |
|
---|
24 | //******************************************************************************
|
---|
25 | //******************************************************************************
|
---|
26 | void ShowRCData(int id, char *data, int size)
|
---|
27 | {
|
---|
28 | cout << "RCData/Version resource with id " << id << " , size " << size << endl;
|
---|
29 | OS2Exe.StoreResource(id, RT_RCDATA, size, data);
|
---|
30 | }
|
---|
31 | //******************************************************************************
|
---|
32 | //******************************************************************************
|
---|
Note:
See
TracBrowser
for help on using the repository browser.