From 03450f9995638dd15afa5f480f1554a9dbae3c1b Mon Sep 17 00:00:00 2001 From: Andreas Mohr Date: Sat, 12 Jun 1999 06:35:26 +0000 Subject: [PATCH] Added the function definitions of GetStartupInfo*(). --- include/winbase.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/winbase.h b/include/winbase.h index 46f7c31070a..0acd100864f 100644 --- a/include/winbase.h +++ b/include/winbase.h @@ -1589,6 +1589,9 @@ INT WINAPI GetProfileSectionW(LPCWSTR,LPWSTR,DWORD); INT WINAPI GetProfileStringA(LPCSTR,LPCSTR,LPCSTR,LPSTR,UINT); INT WINAPI GetProfileStringW(LPCWSTR,LPCWSTR,LPCWSTR,LPWSTR,UINT); #define GetProfileString WINELIB_NAME_AW(GetProfileString) +VOID WINAPI GetStartupInfoA(LPSTARTUPINFOA); +VOID WINAPI GetStartupInfoW(LPSTARTUPINFOW); +#define GetStartupInfo WINELIB_NAME_AW(GetStartupInfo) BOOL WINAPI GetStringTypeA(LCID,DWORD,LPCSTR,INT,LPWORD); BOOL WINAPI GetStringTypeW(DWORD,LPCWSTR,INT,LPWORD); #define GetStringType WINELIB_NAME_AW(GetStringType)