Added basic working stubs of new Windows 2000 API functions.
diff --git a/windows/winpos.c b/windows/winpos.c
index f8feddd..109b73e 100644
--- a/windows/winpos.c
+++ b/windows/winpos.c
@@ -986,6 +986,28 @@
/*******************************************************************
+ * AllowSetForegroundWindow (USER32)
+ */
+BOOL WINAPI AllowSetForegroundWindow( DWORD procid )
+{
+ /* FIXME: If Win98/2000 style SetForegroundWindow behavior is
+ * implemented, then fix this function. */
+ return TRUE;
+}
+
+
+/*******************************************************************
+ * LockSetForegroundWindow (USER32)
+ */
+BOOL WINAPI LockSetForegroundWindow( UINT lockcode )
+{
+ /* FIXME: If Win98/2000 style SetForegroundWindow behavior is
+ * implemented, then fix this function. */
+ return TRUE;
+}
+
+
+/*******************************************************************
* GetShellWindow16 (USER.600)
*/
HWND16 WINAPI GetShellWindow16(void)