Windows - Compile Guide and Support
Added your patch.
Reply

Sponsored links

(09-16-2014, 11:26 AM)rama Wrote: Added your patch.

Thanks! I have tested the added pnach's cheat functions of the pcsx2.exe, and they work fine.
Reply
Good to know. I didn't even know where to look for testing this Laugh
Reply
(09-16-2014, 07:27 PM)rama Wrote: Good to know. I didn't even know where to look for testing this Laugh

Yeah, I know that who can test these things may be few. Smile

FYI, here is one of cheats for testing using FFX.

patch=1,EE,2031BBAC,extended,00000001
patch=1,EE,D031A028,extended,00200064
patch=1,EE,2031BBAC,extended,0000C350

This cheat means like this:

Lulu's HP = 1
if (Gil < 100)
Lulu's HP = 50000

But old implementation is:

Lulu's HP = 1
if (Gil == 100) // Incorrect
Lulu's HP = 50000

An image below is a result of these tests.

[attachment=52457]

I did these test for all new implementation and some not changed old implementation.
Reply
I had some errors while trying to compile SPU2-X
Code:
error C2308: concatenating mismatched strings    C:\pcsx2-master\plugins\spu2-x\src\Windows\AboutBox.cpp    37    1    SPU2-X
error C2308: concatenating mismatched strings    C:\pcsx2-master\plugins\spu2-x\src\Windows\AboutBox.cpp    43    1    SPU2-X
IntelliSense: identifier "wxString" is undefined    C:\pcsx2-master\plugins\spu2-x\src\Windows\Dialogs.h    58    73    SPU2-X
IntelliSense: identifier "wxString" is undefined    C:\pcsx2-master\plugins\spu2-x\src\Windows\Dialogs.h    61    66    SPU2-X
IntelliSense: cannot open error code "Global.h" from origin file    C:\pcsx2-master\plugins\spu2-x\src\Windows\AboutBox.cpp    18    1    SPU2-X
IntelliSense: identifier "IsDevBuild" is undefined    C:\pcsx2-master\plugins\spu2-x\src\Windows\AboutBox.cpp    34    8    SPU2-X
IntelliSense: name followed by '::' must be a class or namespace    C:\pcsx2-master\plugins\spu2-x\src\Windows\AboutBox.cpp    45    8    SPU2-X

and this weirdness with gsdx debug
Code:
error C2664: 'void (GLDEBUGPROC,const void *)': cannot convert parameter 1 from 'overloaded-function' to 'GLDEBUGPROC'    C:\pcsx2-master\plugins\GSdx\GSDeviceOGL.cpp    175    1    GSdx


Eventually, even some warnings
Code:
warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library    C:\pcsx2-master\3rdparty\soundtouch\mmx_optimized.obj    SoundTouch

warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library    C:\pcsx2-master\3rdparty\soundtouch\3dnow_win.obj    SoundTouch

warning MSB8027: Two or more files with the name of accel.cpp will produce outputs to the same location. This can lead to an incorrect build result.  The files involved are ..\..\src\msw\accel.cpp, ..\..\src\generic\accel.cpp.    C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets    935    5    wxCore28

warning MSB8027: Two or more files with the name of fdrepdlg.cpp will produce outputs to the same location. This can lead to an incorrect build result.  The files involved are ..\..\src\msw\fdrepdlg.cpp, ..\..\src\generic\fdrepdlg.cpp.    C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets    935    5    wxCore28

warning MSB8027: Two or more files with the name of listctrl.cpp will produce outputs to the same location. This can lead to an incorrect build result.  The files involved are ..\..\src\msw\listctrl.cpp, ..\..\src\generic\listctrl.cpp.    C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets    935    5    wxCore28

warning LNK4042: object specified more than once; extras ignored    C:\pcsx2-master\3rdparty\wxWidgets\build\msw\Win32\Debug\wxCore28\fdrepdlg.obj    1    1    wxCore28

warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/SAFESEH'     C:\pcsx2-master\tools\bin2cpp\bin2cpp.obj    bin2cpp

warning C4018: '>': signed/unsigned mismatch    C:\pcsx2-master\plugins\cdvdGigaherz\src\TocStuff.cpp    45    1    cdvdGigaherz

warning MSB8027: Two or more files with the name of Config.cpp will produce outputs to the same location. This can lead to an incorrect build result.  The files involved are ..\Linux\Config.cpp, Config.cpp.    C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets    935    5    SPU2-X

warning C4996: '_swprintf': swprintf has been changed to conform with the ISO C standard, adding an extra character count parameter. To use traditional Microsoft swprintf, set _CRT_NON_CONFORMING_SWPRINTFS.    C:\pcsx2-master\plugins\spu2-x\src\Windows\CfgHelpers.cpp    93    1    SPU2-X

warning C4702: unreachable code    C:\pcsx2-master\plugins\gsdx\gpustate.h    98    1    GSdx
warning C4702: unreachable code    C:\pcsx2-master\plugins\gsdx\gpustate.h    102    1    GSdx
warning C4316: 'GSLocalMemory': object allocated on the heap may not be aligned 32    C:\pcsx2-master\plugins\GSdx\GS.cpp    1227    1    GSdx
warning C4316: 'GSLocalMemory': object allocated on the heap may not be aligned 32    C:\pcsx2-master\plugins\GSdx\GS.cpp    1384    1    GSdx
warning C4018: '<=': signed/unsigned mismatch    C:\pcsx2-master\plugins\GSdx\GSDevice11.cpp    437    1    GSdx
warning C4018: '<': signed/unsigned mismatch    C:\pcsx2-master\plugins\GSdx\GSState.cpp    1411    1    GSdx
warning C4244: '=': conversion from 'uint64_t' to 'uint32_t'. Possible loss of data.    C:\pcsx2-master\plugins\USBqemu\qemu-usb\vl.cpp    28    1    USBqemu
warning C4018: '>': signed/unsigned mismatch    C:\pcsx2-master\plugins\USBqemu\qemu-usb\usb-ohci.cpp    359    1    USBqemu
warning C4018: '>': signed/unsigned mismatch    C:\pcsx2-master\plugins\USBqemu\qemu-usb\usb-ohci.cpp    379    1    USBqemu
warning C4018: '<=': signed/unsigned mismatch    C:\pcsx2-master\plugins\USBqemu\qemu-usb\usb-ohci.cpp    580    1    USBqemu
warning C4244: 'argomento': conversion from 'uint64_t' to 'uint32_t'. Possible loss of data.    C:\pcsx2-master\plugins\USBqemu\qemu-usb\usb-ohci.cpp    1120    1    USBqemu
warning C4018: '<': signed/unsigned mismatch    C:\pcsx2-master\plugins\USBqemu\qemu-usb\usb-ohci.cpp    1219    1    USBqemu
warning C4018: '<': signed/unsigned mismatch    C:\pcsx2-master\plugins\USBqemu\qemu-usb\usb-ohci.cpp    1343    1    USBqemu
warning C4244: 'argomento': conversion from 'uint64_t' to 'uint32_t'. Possible loss of data.    C:\pcsx2-master\plugins\USBqemu\qemu-usb\usb-ohci.cpp    1491    1    USBqemu
warning C4244: 'argomento': conversion from 'uint64_t' to 'uint32_t'. Possible loss of data.    C:\pcsx2-master\plugins\USBqemu\qemu-usb\usb-ohci.cpp    1493    1    USBqemu
warning C4101: 'i': unreferenced local variable    C:\pcsx2-master\plugins\USBqemu\qemu-usb\usb-kbd.cpp    619    1    USBqemu

warning C4996: '_vswprintf': swprintf has been changed to conform with the ISO C standard, adding an extra character count parameter. To use traditional Microsoft swprintf, set _CRT_NON_CONFORMING_SWPRINTFS.    C:\pcsx2-master\plugins\USBqemu\Win32\Win32.cpp    15    1    USBqemu

warning C4244: '=': conversion from 's64' to 'int'. Possible loss of data.    C:\pcsx2-master\plugins\USBqemu\USB.cpp    269    1    USBqemu
warning C4244: '=': conversion from 's64' to 'int'. Possible loss of data.    C:\pcsx2-master\plugins\USBqemu\USB.cpp    270    1    USBqemu

warning C4996: 'strdup': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _strdup. See online help for details.    C:\pcsx2-master\plugins\dev9ghzdrk\Win32\Win32.cpp    56    1    DEV9ghzdrk

warning C4996: 'strdup': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _strdup. See online help for details.    C:\pcsx2-master\plugins\dev9ghzdrk\Win32\Win32.cpp    66    1    DEV9ghzdrk

warning C4065: switch statement contains 'default' but no 'case' labels    C:\pcsx2-master\plugins\dev9ghzdrk\DEV9.cpp    388    1    DEV9ghzdrk
Reply
What were you using to compile? The latest GIT still compiles fine for me in VS2013.
[Image: XTe1j6J.png]
Gaming Rig: Intel i7 6700k @ 4.8Ghz | GTX 1070 TI | 32GB RAM | 960GB(480GB+480GB RAID0) SSD | 2x 1TB HDD
Reply
(09-30-2014, 09:18 PM)Blyss Sarania Wrote: What were you using to compile? The latest GIT still compiles fine for me in VS2013.
VS2013
I was trying to make devel and debug builds though.
Reply
Ahh. Okay. I can't build debug SPU2-X either, so I don't know. But I can build GSdx debug/devel.

Just a note, unless you are debugging the plugins themselves, only PCSX2 itself needs to be built under debug/devel to get the debug functions.
[Image: XTe1j6J.png]
Gaming Rig: Intel i7 6700k @ 4.8Ghz | GTX 1070 TI | 32GB RAM | 960GB(480GB+480GB RAID0) SSD | 2x 1TB HDD
Reply
(09-30-2014, 10:22 PM)Blyss Sarania Wrote: Ahh. Okay. I can't build debug SPU2-X either, so I don't know. But I can build GSdx debug/devel.

Just a note, unless you are debugging the plugins themselves, only PCSX2 itself needs to be built under debug/devel to get the debug functions.
Thanks for the tip Happy
Even though, it's always better to check for errors like here every now and then
Reply
Hi. I have a problem with GSdx compiling! Every time I try to only Build GSdx with VS2010, I get many syntax errors and other errors from GLLoader.h and then >Build FAILED.
I can compile PCSX2. But can't compile GSdx!
Code:
1>------ Build started: Project: GSdx, Configuration: Debug SSE2 Win32 ------
1>Build started 4/16/2015 7:03:45 PM.
1>PrepareForBuild:
1>  Creating directory "C:\Development\Project Source\PCSX2\bin\plugins\".
1>InitializeBuildStatus:
1>  Creating "Win32\Debug SSE2\GSdx.unsuccessfulbuild" because "AlwaysCreate" was specified.
1>PreBuildEvent:
1>  'SubWCRev.exe' is not recognized as an internal or external command,
1>  operable program or batch file.
1>  Automatic revision update unavailable, using generic template instead.
1>  You can safely ignore this message - see svnrev.h for details.
1>          1 file(s) copied.
1>          1 file(s) copied.
1>ClCompile:
1>  stdafx.cpp
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(69): error C2059: syntax error : '__stdcall'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(70): error C2059: syntax error : '__stdcall'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(71): error C2065: 'GLuint64' : undeclared identifier
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(71): error C2146: syntax error : missing ')' before identifier 'handle'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(71): error C2165: 'left-side modifier' : cannot modify pointers to data
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(71): error C2513: 'void *' : no variable declared before '='
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(71): error C2059: syntax error : ')'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(72): error C2065: 'GLuint64' : undeclared identifier
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(72): error C2146: syntax error : missing ')' before identifier 'handle'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(72): error C2165: 'left-side modifier' : cannot modify pointers to data
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(72): error C2513: 'void *' : no variable declared before '='
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(72): error C2059: syntax error : ')'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(73): error C2059: syntax error : '__stdcall'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(74): error C2065: 'GLuint64' : undeclared identifier
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(74): error C2146: syntax error : missing ')' before identifier 'handle'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(74): error C2165: 'left-side modifier' : cannot modify pointers to data
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(74): error C2513: 'void *' : no variable declared before '='
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(74): error C2059: syntax error : ')'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(75): error C2065: 'GLuint64' : undeclared identifier
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(75): error C2146: syntax error : missing ')' before identifier 'handle'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(75): error C2165: 'left-side modifier' : cannot modify pointers to data
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(75): error C2513: 'void *' : no variable declared before '='
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(75): error C2059: syntax error : ')'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(76): error C2061: syntax error : identifier 'GLuint64'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(77): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(77): error C2143: syntax error : missing ',' before '*'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(78): error C2061: syntax error : identifier 'GLuint64'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(79): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(79): error C2143: syntax error : missing ',' before '*'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(80): error C2065: 'GLuint64' : undeclared identifier
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(80): error C2146: syntax error : missing ')' before identifier 'handle'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(80): error C2165: 'left-side modifier' : cannot modify pointers to data
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(80): error C2513: 'GLboolean *' : no variable declared before '='
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(80): error C2059: syntax error : ')'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(81): error C2065: 'GLuint64' : undeclared identifier
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(81): error C2146: syntax error : missing ')' before identifier 'handle'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(81): error C2165: 'left-side modifier' : cannot modify pointers to data
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(81): error C2513: 'GLboolean *' : no variable declared before '='
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(81): error C2059: syntax error : ')'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(97): error C2146: syntax error : missing ';' before identifier 'gl_BindSampler'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(97): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(97): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(99): error C2146: syntax error : missing ';' before identifier 'gl_BlendEquationSeparateiARB'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(99): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(99): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(100): error C2146: syntax error : missing ';' before identifier 'gl_BlendFuncSeparateiARB'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(100): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(100): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(111): error C2146: syntax error : missing ';' before identifier 'gl_CreateShaderProgramv'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(111): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(111): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(115): error C2146: syntax error : missing ';' before identifier 'gl_DeleteSamplers'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(115): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(115): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(120): error C2146: syntax error : missing ';' before identifier 'gl_DrawElementsBaseVertex'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(120): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(120): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(126): error C2146: syntax error : missing ';' before identifier 'gl_GenSamplers'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(126): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(126): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(129): error C2146: syntax error : missing ';' before identifier 'gl_GetDebugMessageLogARB'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(129): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(129): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(138): error C2146: syntax error : missing ';' before identifier 'gl_ProgramParameteri'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(138): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(138): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(139): error C2146: syntax error : missing ';' before identifier 'gl_SamplerParameterf'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(139): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(139): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(140): error C2146: syntax error : missing ';' before identifier 'gl_SamplerParameteri'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(140): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(140): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(144): error C2146: syntax error : missing ';' before identifier 'gl_UseProgramStages'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(144): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(144): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(148): error C2146: syntax error : missing ';' before identifier 'gl_FenceSync'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(148): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(148): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(149): error C2146: syntax error : missing ';' before identifier 'gl_DeleteSync'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(149): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(149): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(150): error C2146: syntax error : missing ';' before identifier 'gl_ClientWaitSync'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(150): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(150): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(153): error C2146: syntax error : missing ';' before identifier 'gl_UniformSubroutinesuiv'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(153): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(153): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(155): error C2146: syntax error : missing ';' before identifier 'gl_BindProgramPipeline'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(155): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(155): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(156): error C2146: syntax error : missing ';' before identifier 'gl_DeleteProgramPipelines'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(156): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(156): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(157): error C2146: syntax error : missing ';' before identifier 'gl_GenProgramPipelines'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(157): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(157): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(158): error C2146: syntax error : missing ';' before identifier 'gl_GetProgramPipelineiv'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(158): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(158): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(159): error C2146: syntax error : missing ';' before identifier 'gl_ValidateProgramPipeline'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(159): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(159): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(160): error C2146: syntax error : missing ';' before identifier 'gl_GetProgramPipelineInfoLog'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(160): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(160): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(164): error C2146: syntax error : missing ';' before identifier 'gl_ProgramUniform1i'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(164): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(164): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(170): error C2146: syntax error : missing ';' before identifier 'gl_BindImageTexture'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(170): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(170): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(171): error C2146: syntax error : missing ';' before identifier 'gl_MemoryBarrier'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(171): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(171): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(172): error C2146: syntax error : missing ';' before identifier 'gl_TexStorage2D'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(172): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(172): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(180): error C2146: syntax error : missing ';' before identifier 'gl_GetTextureSamplerHandleARB'
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(180): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\development\project source\pcsx2\plugins\gsdx\GLLoader.h(180): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>
1>Build FAILED.
1>
1>Time Elapsed 00:00:01.66
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

[Image: cCAvEja.png]
[Image: rHv4XRU.png]
Reply




Users browsing this thread: 1 Guest(s)