mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.6 KiB
40 lines
1.6 KiB
LIBRARY SYNCUI
|
|
DESCRIPTION 'Windows Briefcase'
|
|
|
|
|
|
SECTIONS
|
|
.bss READ WRITE ; uninitialized data
|
|
.rdata READ ; read-only data
|
|
.data READ WRITE ; initialized data
|
|
.rsrc READ ; resources
|
|
.idata READ WRITE ; imported address table
|
|
.edata READ ; exported function information
|
|
.reloc READ ; relocation information
|
|
.instanc READ WRITE ; instance data
|
|
|
|
; !! NB !! The MIPS linker doesn't support #ifdef WINNT. This
|
|
; was the original SECTIONS list for Win95, which due to this limitation
|
|
; I can't leave in, even conditionally.
|
|
|
|
; SECTIONS
|
|
; .bss READ WRITE SHARED ; uninitialized data
|
|
; .rdata READ SHARED ; read-only data
|
|
; .data READ WRITE SHARED ; initialized data
|
|
; .rsrc READ SHARED ; resources
|
|
; .idata READ WRITE ; imported address table
|
|
; .edata READ SHARED ; exported function information
|
|
; .reloc READ SHARED ; relocation information
|
|
; .instanc READ WRITE ; instance data
|
|
|
|
|
|
HEAPSIZE 1024 ; BUGBUG: too big?
|
|
|
|
EXPORTS
|
|
DllCanUnloadNow @2
|
|
DllGetClassObject @3
|
|
|
|
; Briefcase functions
|
|
Briefcase_Create @4 ;Internal
|
|
Briefcase_Intro @5 ;Internal
|
|
Briefcase_CreateW @6 ;Internal
|
|
Briefcase_CreateA = Briefcase_Create @7 ;Internal
|