Skip to content

Instantly share code, notes, and snippets.

@j2doll
Created September 9, 2017 05:17
Show Gist options
  • Select an option

  • Save j2doll/18676180b87bc4b7211b2eacc715d31d to your computer and use it in GitHub Desktop.

Select an option

Save j2doll/18676180b87bc4b7211b2eacc715d31d to your computer and use it in GitHub Desktop.
UNREFERENCED PARAMETER
#include <windows.h>
int APIENTRY _tWinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPTSTR lpCmdLine,int nCmdShow)
{
UNREFERENCED_PARAMETER(hPrevInstance);
UNREFERENCED_PARAMETER(lpCmdLine); // warning is not displayed
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment