|
Last change
on this file since 8889 was 3307, checked in by davidr, 26 years ago |
|
RPCRT4: Remote Procedure Call Runtime
|
|
File size:
435 bytes
|
| Line | |
|---|
| 1 | ; $Id: util.asm,v 1.1 2000-04-02 22:02:58 davidr Exp $
|
|---|
| 2 | ;
|
|---|
| 3 | ; /*
|
|---|
| 4 | ; * Project Odin Software License can be found in LICENSE.TXT
|
|---|
| 5 | ; * Win32 Exception handling + misc functions for OS/2
|
|---|
| 6 | ; *
|
|---|
| 7 | ; * Copyright 2000 Edgar Buerkle
|
|---|
| 8 | ; *
|
|---|
| 9 | ; */
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 | .386p
|
|---|
| 13 | NAME ole32util
|
|---|
| 14 |
|
|---|
| 15 | CODE32 SEGMENT DWORD PUBLIC USE32 'CODE'
|
|---|
| 16 |
|
|---|
| 17 | public getEAX
|
|---|
| 18 | getEAX proc near
|
|---|
| 19 | ret
|
|---|
| 20 | endp
|
|---|
| 21 |
|
|---|
| 22 | public getEDX
|
|---|
| 23 | getEDX proc near
|
|---|
| 24 | mov EAX, EDX
|
|---|
| 25 | ret
|
|---|
| 26 | endp
|
|---|
| 27 |
|
|---|
| 28 | CODE32 ENDS
|
|---|
| 29 |
|
|---|
| 30 | END
|
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.