Fixed include path.

git-svn-id: svn://kolibrios.org@5090 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
hidnplayr 2014-09-05 13:33:00 +00:00
parent 9d022746fd
commit 6ee337e0e7

View File

@ -1,3 +1,5 @@
format binary as ""
use32 use32
; standard header ; standard header
db 'MENUET01' ; signature db 'MENUET01' ; signature
@ -15,12 +17,12 @@ purge mov,add,sub
include '../../../../proc32.inc' include '../../../../proc32.inc'
include '../../../../dll.inc' include '../../../../dll.inc'
include '../network.inc' include '../../../../network.inc'
; entry point ; entry point
start: start:
; load libraries ; load libraries
stdcall dll.Load, @IMPORT stdcall dll.Load, @IMPORT
test eax, eax test eax, eax
jnz exit jnz exit
; initialize console ; initialize console
@ -116,10 +118,10 @@ str5 db 'Name resolution failed.',10,0
align 4 align 4
@IMPORT: @IMPORT:
library network, 'network.obj', console, 'console.obj' library network, 'network.obj', console, 'console.obj'
import network, \ import network, \
getaddrinfo, 'getaddrinfo', \ getaddrinfo, 'getaddrinfo', \
freeaddrinfo, 'freeaddrinfo', \ freeaddrinfo, 'freeaddrinfo', \
inet_ntoa, 'inet_ntoa' inet_ntoa, 'inet_ntoa'
import console, \ import console, \
con_start, 'START', \ con_start, 'START', \