[c-host] windows: fix errors from prior commit

This commit is contained in:
Geoffrey McRae 2019-05-09 19:32:19 +10:00
parent 4617829d41
commit 22f9fa3938
2 changed files with 10 additions and 10 deletions

View File

@ -1 +1 @@
a12-160-gfc907b802f+1 a12-161-g4617829d41+1

View File

@ -33,16 +33,16 @@ Place, Suite 330, Boston, MA 02111-1307 USA
struct AppState struct AppState
{ {
int argc; int argc;
char * argv[]; char ** argv;
static char executable[MAX_PATH + 1]; char executable[MAX_PATH + 1];
static HANDLE shmemHandle; HANDLE shmemHandle;
static bool shmemOwned; bool shmemOwned;
static IVSHMEM_MMAP shmemMap; IVSHMEM_MMAP shmemMap;
static HWND messageWnd; HWND messageWnd;
}; };
static struct AppState state = static struct AppState app =
{ {
.shmemHandle = INVALID_HANDLE_VALUE, .shmemHandle = INVALID_HANDLE_VALUE,
.shmemOwned = false, .shmemOwned = false,
@ -116,7 +116,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
SP_DEVICE_INTERFACE_DATA deviceInterfaceData; SP_DEVICE_INTERFACE_DATA deviceInterfaceData;
// convert the command line to the standard argc and argv // convert the command line to the standard argc and argv
LPWSTR * wargv = CommandLineToArgvA(GetCommandLineW(), &app.argc); LPWSTR * wargv = CommandLineToArgvW(GetCommandLineW(), &app.argc);
app.argv = malloc(sizeof(char *) * app.argc); app.argv = malloc(sizeof(char *) * app.argc);
for(int i = 0; i < app.argc; ++i) for(int i = 0; i < app.argc; ++i)
{ {