143 lines
3.9 KiB
C
143 lines
3.9 KiB
C
/*
|
|
* Win32 kernel functions
|
|
*
|
|
* Copyright 1995 Martin von Loewis and Cameron Heide
|
|
*/
|
|
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <malloc.h>
|
|
#include "windows.h"
|
|
#include "winerror.h"
|
|
#include "handle32.h"
|
|
#include "except.h"
|
|
#include "heap.h"
|
|
#include "task.h"
|
|
#include "stddebug.h"
|
|
#include "debug.h"
|
|
#include "xmalloc.h"
|
|
|
|
/***********************************************************************
|
|
* GetModuleHandle (KERNEL32.237)
|
|
*/
|
|
HMODULE32 WIN32_GetModuleHandleA(char *module)
|
|
{
|
|
HMODULE32 hModule;
|
|
|
|
dprintf_win32(stddeb, "GetModuleHandleA: %s\n", module ? module : "NULL");
|
|
/* Freecell uses the result of GetModuleHandleA(0) as the hInstance in
|
|
all calls to e.g. CreateWindowEx. */
|
|
if (module == NULL) {
|
|
TDB *pTask = (TDB *)GlobalLock16( GetCurrentTask() );
|
|
hModule = pTask->hInstance;
|
|
} else
|
|
hModule = GetModuleHandle16(module);
|
|
dprintf_win32(stddeb, "GetModuleHandleA: returning %d\n", hModule );
|
|
return hModule;
|
|
}
|
|
|
|
HMODULE32 WIN32_GetModuleHandleW(LPCWSTR module)
|
|
{
|
|
HMODULE32 hModule;
|
|
LPSTR modulea = HEAP_strdupWtoA( GetProcessHeap(), 0, module );
|
|
hModule = WIN32_GetModuleHandleA( modulea );
|
|
HeapFree( GetProcessHeap(), 0, modulea );
|
|
return hModule;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* GetStartupInfoA (KERNEL32.273)
|
|
*/
|
|
VOID GetStartupInfo32A(LPSTARTUPINFO32A lpStartupInfo)
|
|
{
|
|
lpStartupInfo->cb = sizeof(STARTUPINFO32A);
|
|
lpStartupInfo->lpReserved = "<Reserved>";
|
|
lpStartupInfo->lpDesktop = "Desktop";
|
|
lpStartupInfo->lpTitle = "Title";
|
|
|
|
lpStartupInfo->cbReserved2 = 0;
|
|
lpStartupInfo->lpReserved2 = NULL; /* must be NULL for VC runtime */
|
|
lpStartupInfo->hStdInput = (HANDLE32)0;
|
|
lpStartupInfo->hStdOutput = (HANDLE32)1;
|
|
lpStartupInfo->hStdError = (HANDLE32)2;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* GetStartupInfoW (KERNEL32.274)
|
|
*/
|
|
VOID GetStartupInfo32W(LPSTARTUPINFO32W lpStartupInfo)
|
|
{
|
|
lpStartupInfo->cb = sizeof(STARTUPINFO32W);
|
|
lpStartupInfo->lpReserved = HEAP_strdupAtoW(GetProcessHeap(),0,"<Reserved>");
|
|
lpStartupInfo->lpDesktop = HEAP_strdupAtoW(GetProcessHeap(), 0, "Desktop");
|
|
lpStartupInfo->lpTitle = HEAP_strdupAtoW(GetProcessHeap(), 0, "Title");
|
|
|
|
lpStartupInfo->cbReserved2 = 0;
|
|
lpStartupInfo->lpReserved2 = NULL; /* must be NULL for VC runtime */
|
|
lpStartupInfo->hStdInput = (HANDLE32)0;
|
|
lpStartupInfo->hStdOutput = (HANDLE32)1;
|
|
lpStartupInfo->hStdError = (HANDLE32)2;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* GetComputerNameA (KERNEL32.165)
|
|
*/
|
|
BOOL32
|
|
GetComputerName32A(LPSTR name,LPDWORD size) {
|
|
if (-1==gethostname(name,*size))
|
|
return FALSE;
|
|
*size = lstrlen32A(name);
|
|
return TRUE;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* GetComputerNameW (KERNEL32.166)
|
|
*/
|
|
BOOL32
|
|
GetComputerName32W(LPWSTR name,LPDWORD size) {
|
|
LPSTR nameA = (LPSTR)xmalloc(*size);
|
|
|
|
if (!GetComputerName32A(nameA,size)) {
|
|
free(nameA);
|
|
return FALSE;
|
|
}
|
|
lstrcpynAtoW(name,nameA,*size);
|
|
free(nameA);
|
|
/* FIXME : size correct? */
|
|
return TRUE;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* GetUserNameA [ADVAPI32.67]
|
|
*/
|
|
BOOL32 GetUserName32A(LPSTR lpszName, LPDWORD lpSize)
|
|
{
|
|
size_t len;
|
|
char *name;
|
|
|
|
name=getlogin();
|
|
len = name ? strlen(name) : 0;
|
|
if (!len || !lpSize || len > *lpSize) {
|
|
if (lpszName) *lpszName = 0;
|
|
return 0;
|
|
}
|
|
*lpSize=len;
|
|
strcpy(lpszName, name);
|
|
return 1;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* GetUserNameW [ADVAPI32.68]
|
|
*/
|
|
BOOL32 GetUserName32W(LPWSTR lpszName, LPDWORD lpSize)
|
|
{
|
|
LPSTR name = (LPSTR)xmalloc(*lpSize);
|
|
DWORD size = *lpSize;
|
|
BOOL32 res = GetUserName32A(name,lpSize);
|
|
|
|
lstrcpynAtoW(lpszName,name,size);
|
|
return res;
|
|
}
|