*** empty log message ***

This commit is contained in:
hyung-hwan 2007-02-11 09:21:05 +00:00
parent a01eb7445c
commit aa0b2b0263
3 changed files with 15 additions and 7 deletions

View File

@ -5,10 +5,10 @@ LDFLAGS = -L..\..\lsp -L"c:\program files\borland\bds\4.0\lib"
LIBS = import32.lib cw32mt.lib aselsp.lib
STARTUP = c0x32w.obj
all: lsp
all: aselsp
lsp: lsp.obj
$(LD) $(LDFLAGS) $(STARTUP) lsp.obj,lsp.exe,,$(LIBS),,
aselsp: lsp.obj
$(LD) $(LDFLAGS) $(STARTUP) lsp.obj,$@.exe,,$(LIBS),,
clean:
del $(OBJS) *.obj $(OUT)

View File

@ -3,10 +3,10 @@ CFLAGS = /nologo /MT /GX /W3 /GR- /D_WIN32_WINNT=0x0400 -I..\..\..
LDFLAGS = /libpath:..\..\lsp
LIBS = aselsp.lib user32.lib
all: lsp
all: aselsp
lsp: lsp.obj
link /nologo /out:lsp.exe $(LDFLAGS) $(LIBS) lsp.obj
aselsp: lsp.obj
link /nologo /out:$@.exe $(LDFLAGS) $(LIBS) lsp.obj
clean:
del $(OBJS) *.obj lsp.exe

View File

@ -1,5 +1,5 @@
/*
* $Id: types.h,v 1.68 2007-02-07 14:51:44 bacon Exp $
* $Id: types.h,v 1.69 2007-02-11 09:18:32 bacon Exp $
*
* {License}
*/
@ -230,4 +230,12 @@ typedef int ase_mcint_t;
#endif
#endif
typedef struct ase_cstr_t ase_cstr_t;
struct ase_cstr_t
{
ase_char_t* ptr;
ase_size_t len;
};
#endif