diff --git a/ase/test/lsp/makefile.msw.bcc b/ase/test/lsp/makefile.msw.bcc index 80116094..d888055a 100644 --- a/ase/test/lsp/makefile.msw.bcc +++ b/ase/test/lsp/makefile.msw.bcc @@ -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) diff --git a/ase/test/lsp/makefile.msw.cl b/ase/test/lsp/makefile.msw.cl index e66327d8..9761558f 100644 --- a/ase/test/lsp/makefile.msw.cl +++ b/ase/test/lsp/makefile.msw.cl @@ -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 diff --git a/ase/types.h b/ase/types.h index a59418b2..853455b5 100644 --- a/ase/types.h +++ b/ase/types.h @@ -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