mirror of
https://github.com/raphnet/gc_n64_usb-v3
synced 2024-11-10 19:25:07 -05:00
10 lines
225 B
C
10 lines
225 B
C
#include <stdlib.h> // for wchar_t
|
|
#include "usbstrings.h"
|
|
|
|
const wchar_t *g_usb_strings[] = {
|
|
[0] = L"raphnet technologies", // 1 : Vendor
|
|
[1] = L"GC/N64 to USB v3.0", // 2: Product
|
|
[2] = L"123456", // 3 : Serial
|
|
};
|
|
|