Alexandre Julliard wrote:
Shachar Shemesh wine-patches@shemesh.biz writes:
-#include "config.h" -#include "wine/port.h" +#include <config.h> +#include <wine/port.h>
#include <stdlib.h> #include <string.h> #include <assert.h> -#include "winerror.h" -#include "winnls.h" -#include "wownt32.h" -#include "gdi.h" -#include "wine/unicode.h" -#include "wine/debug.h" +#include <winerror.h> +#include <winnls.h> +#include <wownt32.h> +#include <gdi.h> +#include <wine/unicode.h> +#include <wine/debug.h> +#include "gdibidi.h"
Please don't change include quotes when modifying a file. It's not necessary, and only adds confusion.
The reason I did was to reduce confusion. The usual includes are standard includes, and can be included with either <> or "". The new include (gdibidi.h) is a local include, and can only be included with "". To differentiate the two, I changed those who could afford a <>.
Shachar