Added missing string.h include.
This commit is contained in:
parent
688221460b
commit
c3e1f72bac
|
@ -5,6 +5,7 @@
|
|||
* Copyright (C) 1994 Alexandre Julliard
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include "win.h"
|
||||
#include "button.h"
|
||||
#include "winuser.h"
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
* please read EDIT.TODO (and update it when you change things)
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include "winnt.h"
|
||||
#include "win.h"
|
||||
#include "wine/winbase16.h"
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
* Copyright 1993 Alexandre Julliard
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
|
||||
#include "win.h"
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
*/
|
||||
|
||||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "wintypes.h"
|
||||
#include "winerror.h"
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
/*
|
||||
* dlls/advapi32/security.c
|
||||
*/
|
||||
#include <string.h>
|
||||
|
||||
#include "wintypes.h"
|
||||
#include "winreg.h"
|
||||
#include "winerror.h"
|
||||
|
|
|
@ -19,6 +19,8 @@
|
|||
* - Little flaw when drawing a bitmap on the right side of the text.
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "commctrl.h"
|
||||
#include "win.h"
|
||||
#include "header.h"
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
* - All notifications.
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "commctrl.h"
|
||||
#include "rebar.h"
|
||||
#include "win.h"
|
||||
|
|
|
@ -13,6 +13,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "commctrl.h"
|
||||
#include "tab.h"
|
||||
#include "win.h"
|
||||
|
|
|
@ -25,6 +25,8 @@
|
|||
* - Microsofts controlspy examples.
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "commctrl.h"
|
||||
#include "sysmetrics.h"
|
||||
#include "cache.h"
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
* curtool.exe, deltool.exe, enumtools.exe, getinfo.exe, getiptxt.exe,
|
||||
* hittest.exe, needtext.exe, newrect.exe, updtext.exe and winfrpt.exe.
|
||||
*/
|
||||
#include <string.h>
|
||||
|
||||
#include "commctrl.h"
|
||||
#include "tooltips.h"
|
||||
|
|
|
@ -30,6 +30,8 @@
|
|||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "commctrl.h"
|
||||
#include "winnls.h"
|
||||
#include "updown.h"
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
*
|
||||
* Copyright 1998 Juergen Schmied <juergen.schmied@metronet.de>
|
||||
*/
|
||||
#include <string.h>
|
||||
|
||||
#include "winerror.h"
|
||||
#include "debug.h"
|
||||
|
||||
|
|
|
@ -5,6 +5,8 @@
|
|||
*
|
||||
* Copyright 1998 <juergen.schmied@metronet.de>
|
||||
*/
|
||||
#include <string.h>
|
||||
|
||||
#include "debug.h"
|
||||
#include "wintypes.h"
|
||||
#include "wine/obj_base.h"
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#include <assert.h>
|
||||
#include <malloc.h>
|
||||
#include <math.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "winbase.h"
|
||||
#include "wingdi.h"
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
* Copyright 1998 Huw D M Davies
|
||||
*
|
||||
*/
|
||||
#include <string.h>
|
||||
|
||||
#include "gdi.h"
|
||||
#include "psdrv.h"
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
|
||||
#include <config.h>
|
||||
|
|
Loading…
Reference in New Issue