mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 06:30:37 +00:00
21 lines
392 B
C
21 lines
392 B
C
|
/*
|
||
|
* WINDEBUG.DLL
|
||
|
*
|
||
|
* Copyright (c) 1997 Andreas Mohr
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <stdlib.h>
|
||
|
#include "windows.h"
|
||
|
#include "module.h"
|
||
|
|
||
|
/***********************************************************************
|
||
|
* WinNotify (WINDEBUG.1)
|
||
|
* written without _any_ docu
|
||
|
*/
|
||
|
DWORD WinNotify() {
|
||
|
fprintf(stderr, "WinNotify(): stub !\n");
|
||
|
return NULL;
|
||
|
}
|