Last change
on this file since 2 was 2, checked in by root, 23 years ago |
Initial revision
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
231 bytes
|
Rev | Line | |
---|
[2] | 1 | #include <stdlib.h>
|
---|
| 2 | #include "version.h"
|
---|
| 3 |
|
---|
| 4 |
|
---|
| 5 | int _System ResVersion (long *vermajor,long *verminor) {
|
---|
| 6 |
|
---|
| 7 | int ret = 0;
|
---|
| 8 |
|
---|
| 9 | if(vermajor && verminor) {
|
---|
| 10 | *vermajor = VERMAJOR;
|
---|
| 11 | *verminor = VERMINOR;
|
---|
| 12 | ret = 1;
|
---|
| 13 | }
|
---|
| 14 | return ret;
|
---|
| 15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.