mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 00:54:40 +00:00
fixed header usage. Please avoid using windows.h
svn path=/trunk/; revision=14517
This commit is contained in:
parent
ff86185830
commit
bd3a9da15f
3 changed files with 17 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: chklib.c,v 1.2 2000/02/29 23:57:46 ea Exp $
|
/* $Id$
|
||||||
*
|
*
|
||||||
* chklib.c
|
* chklib.c
|
||||||
*
|
*
|
||||||
|
@ -27,10 +27,14 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
//#define UNICODE
|
//#define UNICODE
|
||||||
#include <windows.h>
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
|
#include <stdarg.h>
|
||||||
|
#include <windef.h>
|
||||||
|
#include <winbase.h>
|
||||||
|
|
||||||
#include "win32err.h"
|
#include "win32err.h"
|
||||||
|
|
||||||
#ifdef DISPLAY_VERSION
|
#ifdef DISPLAY_VERSION
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: ldd.c,v 1.3 2001/01/13 18:17:17 ea Exp $
|
/* $Id$
|
||||||
*
|
*
|
||||||
* FILE : ldd.c
|
* FILE : ldd.c
|
||||||
* AUTHOR: Emanuele ALIBERTI
|
* AUTHOR: Emanuele ALIBERTI
|
||||||
|
@ -6,9 +6,13 @@
|
||||||
* DESC : List DOS devices, i.e. symbolic links created
|
* DESC : List DOS devices, i.e. symbolic links created
|
||||||
* in the \?? object manager's name space.
|
* in the \?? object manager's name space.
|
||||||
*/
|
*/
|
||||||
#include <windows.h>
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
#include <windef.h>
|
||||||
|
#include <winbase.h>
|
||||||
|
|
||||||
|
|
||||||
#include <reactos/buildno.h>
|
#include <reactos/buildno.h>
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
/* $Id: wmain.c,v 1.1 1999/05/16 07:27:35 ea Exp $
|
/* $Id$
|
||||||
*
|
*
|
||||||
* Entry point for programs that use wmain()
|
* Entry point for programs that use wmain()
|
||||||
*/
|
*/
|
||||||
#include <windows.h>
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
#include <windef.h>
|
||||||
|
#include <winbase.h>
|
||||||
|
|
||||||
int wmain(int argc,wchar_t *argv[]);
|
int wmain(int argc,wchar_t *argv[]);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue