Removed resource.h.
This commit is contained in:
parent
3dc5d9461e
commit
b2f6f0e7d2
|
@ -19,7 +19,6 @@
|
|||
#include "wine/winbase16.h"
|
||||
#include "combo.h"
|
||||
#include "local.h"
|
||||
#include "resource.h"
|
||||
#include "debugtools.h"
|
||||
#include "callback.h"
|
||||
#include "tweak.h"
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
#include "nonclient.h"
|
||||
#include "user.h"
|
||||
#include "message.h"
|
||||
#include "resource.h"
|
||||
#include "tweak.h"
|
||||
|
||||
#include "debugtools.h"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
#include "ldt.h"
|
||||
#include "heap.h"
|
||||
#include "commdlg.h"
|
||||
#include "resource.h"
|
||||
#include "dialog.h"
|
||||
#include "dlgs.h"
|
||||
#include "module.h"
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
#include "ldt.h"
|
||||
#include "heap.h"
|
||||
#include "commdlg.h"
|
||||
#include "resource.h"
|
||||
#include "dialog.h"
|
||||
#include "dlgs.h"
|
||||
#include "module.h"
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
#include "wine/winbase16.h"
|
||||
#include "ldt.h"
|
||||
#include "commdlg.h"
|
||||
#include "resource.h"
|
||||
#include "dialog.h"
|
||||
#include "dlgs.h"
|
||||
#include "module.h"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
#include "ldt.h"
|
||||
#include "heap.h"
|
||||
#include "commdlg.h"
|
||||
#include "resource.h"
|
||||
#include "dialog.h"
|
||||
#include "dlgs.h"
|
||||
#include "module.h"
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
#include "wine/winuser16.h"
|
||||
#include "ldt.h"
|
||||
#include "commdlg.h"
|
||||
#include "resource.h"
|
||||
#include "dialog.h"
|
||||
#include "dlgs.h"
|
||||
#include "module.h"
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
|
||||
#include "winerror.h"
|
||||
#include "heap.h"
|
||||
#include "resource.h"
|
||||
#include "dlgs.h"
|
||||
#include "win.h"
|
||||
#include "sysmetrics.h"
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
#include "wine/winuser16.h"
|
||||
#include "winerror.h"
|
||||
#include "heap.h"
|
||||
#include "resource.h"
|
||||
#include "dlgs.h"
|
||||
#include "ldt.h"
|
||||
#include "sysmetrics.h"
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
#include <string.h>
|
||||
#include "psdrv.h"
|
||||
#include "debugtools.h"
|
||||
#include "resource.h"
|
||||
#include "winuser.h"
|
||||
#include "winspool.h"
|
||||
|
||||
|
|
|
@ -1,21 +0,0 @@
|
|||
/*
|
||||
* Resource definitions
|
||||
*
|
||||
* Copyright 1995 Alexandre Julliard
|
||||
*/
|
||||
|
||||
#ifndef __WINE_RESOURCE_H
|
||||
#define __WINE_RESOURCE_H
|
||||
|
||||
#include "windef.h"
|
||||
#include "wrc_rsc.h"
|
||||
|
||||
#if defined(__GNUC__) && ((__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >= 7)))
|
||||
#define WINE_CONSTRUCTOR __attribute__((constructor))
|
||||
#define HAVE_WINE_CONSTRUCTOR
|
||||
#else
|
||||
#define WINE_CONSTRUCTOR
|
||||
#undef HAVE_WINE_CONSTRUCTOR
|
||||
#endif
|
||||
|
||||
#endif /* __WINE_RESOURCE_H */
|
|
@ -19,7 +19,6 @@
|
|||
#include "ldt.h"
|
||||
#include "module.h"
|
||||
#include "neexe.h"
|
||||
#include "resource.h"
|
||||
#include "callback.h"
|
||||
#include "debugtools.h"
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
#include <windows.h>
|
||||
#include "globals.h"
|
||||
#include "resource.h"
|
||||
|
||||
/* global variables */
|
||||
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
#include <commdlg.h>
|
||||
|
||||
#include "globals.h"
|
||||
#include "resource.h"
|
||||
#include <stdio.h>
|
||||
|
||||
BOOL FileIsPlaceable( LPCSTR szFileName );
|
||||
|
|
|
@ -40,8 +40,6 @@
|
|||
#include <assert.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#include "resource.h" /* For HAVE_WINE_CONSTRUCTOR */
|
||||
|
||||
#include "wrc.h"
|
||||
#include "utils.h"
|
||||
#include "writeres.h"
|
||||
|
@ -392,14 +390,6 @@ int main(int argc,char *argv[])
|
|||
}
|
||||
}
|
||||
|
||||
#if !defined(HAVE_WINE_CONSTRUCTOR)
|
||||
if(auto_register)
|
||||
{
|
||||
warning("Autoregister code non-operable (HAVE_WINE_CONSTRUCTOR not defined)");
|
||||
auto_register = 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Set alignment power */
|
||||
a = alignment;
|
||||
for(alignment_pwr = 0; alignment_pwr < 10 && a > 1; alignment_pwr++)
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
#include "mdi.h"
|
||||
#include "user.h"
|
||||
#include "menu.h"
|
||||
#include "resource.h"
|
||||
#include "scroll.h"
|
||||
#include "struct32.h"
|
||||
#include "tweak.h"
|
||||
|
|
Loading…
Reference in New Issue